我在底部有一个webview和一个admob广告。它正在获取广告,但没有显示它,因为屏幕太小。出乎意料的是,当我只用linear layout
广告时,广告会显示正常。
这是我现在的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical">
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adUnitId="a14e0b54f42c7c7"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
<WebView
android:id="@+id/sdrwebview"
android:layout_width="fill_parent"
android:layout_above="@+id/ad"
android:layout_height="fill_parent"/>
</RelativeLayout>
答案 0 :(得分:1)
尝试交换周围的视图......您的Webview可能涵盖Adview
<RelativeLayout...>
<WebView.../>
<com.google.ads.AdView.../>
</RelativeLayout>
答案 1 :(得分:0)
请参阅AdMob文档。 https://developers.google.com/mobile-ads-sdk/docs/admob/intermediate#play
SDK会请求实例化请求AdView的大小。如果设备屏幕上没有足够的空间来显示广告,则不会显示任何内容。
也许AdMob SDK不支持小于320x50的屏幕。
答案 2 :(得分:0)
尝试使用以下内容
ads:adSize="SMART_BANNER"