ねえ、アドビューを「キャンセル可能」に設定してサポートされているボタンをポップさせることができる、AdMobライブラリまたは別の広告タイプに組み込まれているものがあるかどうかだけ知りたいのですが。現在、私は相対的なレイアウトでアドビューを持っており、その上に小さな画像があり、onClickListenerがあり、それが広告をアニメーション化して破棄します。ただし、理想的には、組み込みのボタンでユーザーインタラクションが登録されますが、それは少し多すぎると思います...
前もって感謝します!よろしく、-ピート
これが私の現在の「広告レイアウト」です
<?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:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#959595"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/ad_Layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/adView"
android:layout_alignTop="@id/adView" />
<ImageView
android:id="@+id/cancelbutton"
android:layout_width="20dp"
android:layout_height="20dp"
android:paddingLeft="5dp"
android:paddingTop="5dp"
android:layout_alignLeft="@id/adView"
android:layout_alignTop="@id/adView"
android:src="@drawable/cancelbutton" />
</RelativeLayout>