アプリをリリースしましたが、レイアウトをプッシュする admob に問題があります。たとえば、アクティビティを開くとすぐにジェスチャーを描き始め、数秒後に広告がポップアップし、コンテンツがプッシュされ、その結果、あなたが描いたジェスチャー。
これが起こらないようにするにはどうすればよいですか。広告をロードしたいのですが、その下にあるものをプッシュしたくありません。
作成ジェスチャ レイアウトの XML を含めました
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/gridbg"
android:orientation="vertical">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId=""
ads:adSize="BANNER"
ads:loadAdOnCreate="true"
android:gravity="center_horizontal"/>
</LinearLayout>
<android.gesture.GestureOverlayView
android:id="@+id/gestures_overlay"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1.0"
android:gestureColor="#00FFFF"
android:gestureStrokeType="multiple" />
<LinearLayout
style="@android:style/ButtonBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/done"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:enabled="false"
android:onClick="addGesture"
android:text="@string/button_done"
style="@style/BlueButtonText"
android:background="@drawable/blue_button"
/>
<Button
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="cancelGesture"
android:text="@string/button_discard"
style="@style/BlueButtonText"
android:background="@drawable/blue_button"
/>
</LinearLayout>
</LinearLayout>