2

stackoverflowリンクを使用してAndroidアプリにGoogle広告を表示する作業

指示に従うと、広告ビューは表示されますが、広告は表示されず、広告ビューにメッセージが表示されます - you must have AdAcitvity declared in AndroidManifest.xml with config changes。私はすでにマニフェストにアクティビティを追加していますが、なぜこれが起こるのか不思議です。私の問題で私を助けて、あなたの提案をしてください。

前もって感謝します。

4

3 に答える 3

3

これは、Android アプリへの admob 統合の非常に良い例です。

あなたの問題は、マニフェストファイルに入れられるだけではありません。

<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
于 2013-11-09T11:54:46.390 に答える
1

リンクの質問は少し古いです。いくつかの変更を行う必要があります。

最新バージョンの AdMob を使用してください。最新バージョンは 6.4.1 で、ここで見つけることができます。

マニフェストには、次のように宣言された構成変更がさらに必要です。

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

公式ドキュメントのすべての手順を確認してください。

于 2013-11-09T11:52:14.343 に答える
0
// try this 
1. download latest google-play-services,jar
2. add jar to project build path

**main.xml**
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:id="@+id/lnrMain">

</LinearLayout>

public class MyActivity extends FragmentActivity {

    LinearLayout lnrMain;

    @Override
    protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        lnrMain = (LinearLayout) findViewById(R.id.lnrMain);

        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                AdView adView = new AdView(MyActivity.this);
                adView.setAdUnitId("0445b7141d9d4e1b");
                adView.setAdSize(AdSize.BANNER);
                AdRequest.Builder builder = new AdRequest.Builder();
                builder.addTestDevice(AdRequest.DEVICE_ID_EMULATOR);
                adView.loadAd(builder.build());
                lnrMain.addView(adView);
            }
        });

    }
}

**AndroidManifest.xml**
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.Demo"
    android:versionCode="1"
    android:versionName="1.0">

    <uses-sdk android:minSdkVersion="8"
        android:targetSdkVersion="17"/>
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:label="@string/app_name"
        android:icon="@drawable/ic_launcher">
        <activity
            android:name="MyActivity"
            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.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />

        <meta-data
            android:name="ADMOB_ALLOW_LOCATION_FOR_ADS"
            android:value="true" />
        <meta-data
            android:name="com.google.android.gms.version"
            android:value="4030500" />
    </application>
</manifest>
于 2013-11-09T11:52:23.667 に答える