0

我正在使用 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>
4

1 回答 1

0

我想你不见了

ads:loadAdOnCreate="true"

如果没有帮助,请尝试此操作,然后放入您的java文件。

于 2013-08-21T11:49:22.893 回答