我正在用eclipse开发一个Android应用程序,我一直想知道这个xml代码会在页面底部显示admob。
我在模拟器上启动了这个,并且admob没有显示,但我不知道是因为代码还是因为我必须等待大约2分钟才能看到admob。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent" android:id="@+id/rltvLayout1"
android:layout_height="fill_parent">
<WebView android:id="@+id/web_engine"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:fitsSystemWindows="true" />
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
ads:adSize="BANNER"
ads:adUnitId="my code"
ads:refreshInterval="60" >
</com.google.ads.AdView>
</RelativeLayout>
答案 0 :(得分:0)
我认为你错过了
ads:loadAdOnCreate="true"
如果没有帮助,请尝试此操作,然后输入 java 文件。