0

我的 admob 广告没有出现在任何 Android 平板设备上,有点痛苦。我一直在尝试解决这个问题,但没有运气。

这些广告在标准的安卓手机上确实显示得很好,但在平板电脑上却不行。

也许我没有正确使用下面的 SMART_BANNER,任何人都有任何提示或想法。

android:id="@+id/ad_layout"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:gravity="bottom"
android:orientation="horizontal" >

<com.google.ads.AdView 
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="match_parent"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="xxxxxxxx"
ads:loadAdOnCreate="true"
/>

问候,莎拉

4

1 回答 1

0

似乎是布局问题。你使用的是RelativeLayout,对吧?尝试使广告贴在顶部/底部

<com.google.ads.AdView android:id="@+id/adView"
                     android:layout_width="match_parent"
                     android:layout_height="wrap_content"
                     ads:adUnitId="xxxxxxxx"
                     ads:adSize="BANNER"
                     ads:testDevices="TEST_EMULATOR"
                     ads:loadAdOnCreate="true"
                      android:layout_alignParentTop="true"
                      android:gravity="center"/

>

于 2013-08-26T13:34:25.343 回答