我很困惑我不知道为什么我的广告很小而且我无法点击它! 这是两个链接,第一个是我的广告,第二个是另一个广告,我希望我的广告具有相同的大小和可点击性 我努力做到这一点,但我没有得到它 http://imageshack.us/f/13/6o0t.jpg/ http://imageshack.us/f/547/s8l3.jpg/
这是我的xml:
<?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"
android:background="@drawable/bg" >
<ListView
android:id="@+id/lst_add_newDevices"
android:layout_width="200dp"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_marginRight="40dp"
android:layout_marginTop="20dp"
android:background="#22222222"
android:cacheColorHint="#00000000"
android:scrollbars="none" >
</ListView>
<RelativeLayout
android:id="@+id/RelativeLayout_main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/f"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/l1"
android:layout_width="fill_parent"
android:layout_height="90dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="10dp"
android:gravity="center_vertical"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/moreapps1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:background="@null"
android:src="@drawable/moreapps" />
<ImageButton
android:id="@+id/show1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:background="@null"
android:src="@drawable/show" />
</LinearLayout>
</RelativeLayout>
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
ads:adSize="BANNER"
ads:adUnitId="id"
ads:loadAdOnCreate="true" />
<ImageView
android:id="@+id/about"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/final_about"
android:visibility="gone" />
</RelativeLayout>
答案 0 :(得分:0)
你的ListView有android:layout_height =“fill_parent”。
我只是猜测,但我认为这意味着它会填满整个页面,这可能意味着它与您的广告重叠。如果您的广告位于ListView下,则无法点击。
您可以尝试使用按钮替换广告,如果该广告无法点击,则表明我的猜测是正确的。