我找到了教程和解决方案,但我仍然不知道如何展示我的admob广告。
它只显示webview和下面的白色区域。
以下是我在webview下面显示admob的活动。
我按照youtube教程http://www.youtube.com/watch?v=AzTFkpIj2L4
进行操作<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".ContentActivity" >
<WebView
android:id="@+id/webview_content"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:layout_alignParentTop="true" />
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@id/webview_content"
ads:adSize="BANNER"
ads:adUnitId="a1526xxxxxadunitidxxxxe141f8"
ads:loadOnCreate="true"
ads:testDevices="DEVICE_ID" >
</com.google.ads.AdView>
由于
答案 0 :(得分:0)
在清单文件中添加此代码
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
答案 1 :(得分:0)
开始使用的好地方是查看admob文档。 https://developers.google.com/mobile-ads-sdk/docs/