3

所以我下载了最新的admob sdk。按照所有说明将其导入项目等。

然后我通过将 project.properties 目标更改为 android-13 并将 min-sdk 设置为 10 来做了允许 2.3.3 中的广告的事情。

在清单中也声明了这一点:

<activity android:name="com.google.ads.AdActivity"
                       android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

像这样在 XML 中声明 AdView:

<com.google.ads.AdView android:id="@+id/adView"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     ads:adUnitId="xxxxxx"    <!--replaced xxxxxx with publisher id-->
                     ads:adSize="BANNER"
                     ads:testDevices="xxxxx"  <!--replaced xxxxx with device id-->
                     ads:loadAdOnCreate="true"/>

毕竟这一切的广告根本没有出现!在图形布局中,它说无法实例化类

我哪里出错了?

4

1 回答 1

0

您是否将admob.jar文件包含在项目libs目录中?

于 2012-06-07T09:28:34.293 回答