私はAndroidアプリケーションにAdMobを統合しています。マイmain.xml
Admob統合 - 問題
:
`<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 Documentationから
私は更新しましたが、同じ問題を示しています...私のメールにadmobを統合したアプリを誰かに送ってもらえますか? [email protected] pls help – Javo
エラー:エラー:String型が許可されません( 'configChanges'の値で 'keyboard | keyboardHidden | orientation | screenLayout | uiMode | screenSize | smallestScreenSize') – Javo
ターゲットをandroid-13に設定しましたか? Android 3.2を使用しているAndroidライブラリはありますか? –