Android平板电脑上没有显示Admobs - 您如何测试?

时间:2013-08-19 14:47:48

标签: android android-emulator admob

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

广告在标准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"
/>

此致 萨拉

1 个答案:

答案 0 :(得分: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"/

&GT;