我正在將AdMob集成到我的Android應用程序中。Admob集成 - 問題
我main.xml
:
`<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="XXX"
ads:loadAdOnCreate="true"
ads:adSize="BANNER" />
</LinearLayout>`
我manifest.xml
:
<activity android:name="com.google.ads.AdActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="orientation|keyboard|keyboardHidden"/>
我的類:
AdView adView = (AdView)findViewById(R.id.adView);
adView.loadAd(new AdRequest());
我採用了Android 2.1。當我在模擬器上運行時,它向我顯示:
You Must have AdActivity declared in AndroidManifest.xml with configChanges
有人能幫助我嗎?
我已更新,但它顯示我有同樣的問題...任何人都可以發送給我一個應用程序與admob集成在我的電子郵件? [email protected]請幫忙 – Javo
錯誤:錯誤:不允許使用字符串類型('configChanges'的值爲'keyboard | keyboardHidden | orientation | screenLayout | uiMode | screenSize | smallestScreenSize') – Javo
您是否將目標設置爲android-13?您使用的是Android 3.2的Android庫嗎? –