Android layout Android的Admob布局

Android layout Android的Admob布局,android-layout,admob,Android Layout,Admob,我有以下代码…我似乎无法让广告在我的滚动视图之外运行。我试着回答关于这个话题的其他问题。请帮忙。我所有的添加都显示在我的内容顶部。我更喜欢在我的滚动视图之外运行广告 我的代码: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.

我有以下代码…我似乎无法让广告在我的滚动视图之外运行。我试着回答关于这个话题的其他问题。请帮忙。我所有的添加都显示在我的内容顶部。我更喜欢在我的滚动视图之外运行广告

我的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >


        <com.google.ads.AdView
            android:id="@+id/adView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            ads:adSize="BANNER"
            ads:adUnitId="xxxxxxxxxxxxxxxxx"
            ads:loadAdOnCreate="true" />


    <ScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:fillViewport="true" >

        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/layoutbottom"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentBottom="true"
            android:orientation="vertical"
            android:padding="5dp" >

            <!-- android:layout_height="456dp" -->

            <TextView
                android:id="@+id/txtPlaceName"
                style="@style/HeaderText"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/txtAddress"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />

            <ImageView
                android:id="@+id/img"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/txtStory"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

            <TextView
                android:id="@+id/txtURL"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:autoLink="web" />
        </LinearLayout>
    </ScrollView>

</RelativeLayout>

尝试在AdView上添加
android:layout\u alignParentTop=“true”
,并在滚动视图上添加
android:layout\u=“@id/AdView”