Я использовал следующее в манифесте 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).
Как настроить экран при загрузке рекламы?