Admob Ad Overlapping SurfaceView - PullRequest
       20

Admob Ad Overlapping SurfaceView

0 голосов
/ 11 июня 2011

Я использовал следующее в манифесте 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="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    ads:adUnitId="@string/admob_id"
    ads:adSize="BANNER"
    ads:loadAdOnCreate="true"
    android:background="#FF0000"
    />
<com.Joey_Ant.Lite.GameView
    android:id="@+id/gameScreen"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@id/adView"
    />
</RelativeLayout>

Однако объявление по-прежнему перекрывает вид поверхности (com.Joey_Ant.Lite.GameView).

Как настроить экран при загрузке рекламы?

1 Ответ

1 голос
/ 28 января 2012

Вы можете попробовать это, оно не будет перекрывать вид поверхности, но оно оставит рекламное пространство, даже если объявление не загружается

   <LinearLayout
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.Joey_Ant.Lite.GameView
    android:id="@+id/gameScreen"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    />
<com.google.ads.AdView 
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adUnitId="@string/admob_id"
    ads:adSize="BANNER"
    ads:loadAdOnCreate="true"
    android:background="#FF0000"
    />

</LinearLayout>
...