我可以看到ADMOB横幅但是可以点击UN,请检查我的XML文件。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width`enter code here`="wrap_content"
android:layout_height="match_parent"
android:background="@drawable/bg"
tools:context=".MainActivity" >
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="xxxxxxx" >
</com.google.android.gms.ads.AdView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="horizontal" >
<ImageView
android:id="@+id/ItemId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/box_blank"
android:padding="10dp"
android:src="@drawable/new" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_margin="10dp"
android:gravity="center"
android:orientation="vertical" >
<ImageView
android:id="@+id/nextId"
android:layout_width="52dp"
android:layout_height="52dp"
android:layout_margin="4dp"
android:src="@drawable/next" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
上面的文件可以正常显示问题不是点击横幅。
请帮助我,或任何想法都会有所帮助。
上面的文件可以正常显示问题不是点击横幅。
请帮助我,或任何想法都会有所帮助。 感谢
答案 0 :(得分:0)
您的其他一些xml布局元素可能会涵盖您的广告。如果是这种情况,他们就会窃取点击次数。
你可以通过分配android:background =&#34;&#34;来检查你的xml元素。如果它们重叠则那就是你的问题。