Макет Admob для Android - PullRequest
       6

Макет Admob для Android

0 голосов
/ 23 ноября 2011

У меня есть следующий код .... и я не могу показывать рекламу за пределами моего просмотра прокрутки.Я пытался следовать другим вопросам по этой теме.Пожалуйста помогите.Все мои добавления отображаются поверх моего контента.Я бы предпочел, чтобы объявления показывались за пределами моего вида прокрутки.

мой код:

<?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>

1 Ответ

0 голосов
/ 23 ноября 2011

Попробуйте добавить android:layout_alignParentTop="true" в AdView и android:layout_below="@id/adView" в ScrollView.

...