所以我下载了最新的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"/>
完成所有这些后,广告根本没有出现! 在图形布局中,它表示类无法实例化
我哪里出错?
答案 0 :(得分:0)
您是否在项目admob.jar
目录中包含libs
文件?