0

我很困惑,我不知道为什么我的广告很小,我不能点击它!这里有两个链接第一个是我的广告第二个是另一个广告我希望我的广告具有相同的大小并且可点击我尝试了很多,但我没有得到它 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>
4

1 回答 1

0

你的 ListView 有 android:layout_height="fill_parent"。

我只是在猜测,但我认为这意味着它会填满整个页面,这可能意味着它与您的广告重叠。如果您的广告在您的 ListView 下,那么它将无法点击。

您可以尝试用按钮替换广告,如果该按钮不可点击,则表明我的猜测是正确的。

于 2013-12-19T20:42:49.180 回答