1

我在我的应用程序中使用广告。当模拟器在纵向模式下工作时它可以正常工作,但是当我将模拟器转到横向模式时,即使我给出了 android:layout_width="match_parent",它也会填满水平屏幕。请告诉我如何解决这个问题。

这是xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/rl"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        />

     <com.google.ads.AdView
        android:id="@+id/ad"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        ads:adSize="BANNER"
        ads:adUnitId="a1501e5633125fb"
        ads:loadAdOnCreate="true"
        ads:testDevices="TEST_EMULATOR, 123456789ABCDEF" />


</RelativeLayout>
4

1 回答 1

7

您应该为此使用智能横幅

智能横幅是新的广告单元(从 v6.0.0 开始),它将在不同设备上以任一方向在任何屏幕尺寸上呈现全屏横幅广告。智能横幅通过“智能”检测手机在当前方向上的宽度,并使广告视图具有该尺寸,从而帮助处理不同设备上日益增加的屏幕碎片。

于 2012-08-18T09:31:50.353 回答