2

AdMobの簡単な例を作成しようとしましたが、失敗しました。これは私のソースコードです

AdMobActivity

public class AdMobActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
  }
}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/linearLayout"
    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="myId"
         ads:adSize="BANNER"
         ads:loadAdOnCreate="true" />
</LinearLayout>

Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.ad.mob"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="9"/>

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".AdMobActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
            <activity android:name="com.google.ads.AdActivity"
              android:configChanges="keyboard|keyboardHidden|orientation"/>
</application>
</manifest>

私はAdMob4.3.1を使用しており、Androidの場合はtarget = android-13

プロジェクトを実行しようとすると、追加が必要な場所に「configChangesを使用してAndroidManifest.xmlでAdActivityを宣言する必要があります」というメッセージが表示されます。それで、ここで私の間違いはどこにありますか?

4

2 に答える 2

4

AdActivityには、次の構成変更が必要です。

keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize

于 2012-04-18T17:08:58.393 に答える
1

また、Googleモバイルサービスの最新のadMobを使用している場合の完全な答えは次のとおりです。

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

(注意、それはandroid:name変更されました)

于 2015-12-11T16:29:49.727 に答える