添加谷歌广告到Android应用程序不显示广告

时间:2013-11-09 11:17:35

标签: android admob

使用stackoverflow在Android应用中显示谷歌广告 link

按照说明操作后,它会显示广告视图但不显示广告,并且在广告视图中会显示一条消息 - you must have AdAcitvity declared in AndroidManifest.xml with config changes。 我已经在清单中添加了活动,我很惊讶为什么会这样。请帮我解决我的问题并提出你的建议。

先谢谢。

3 个答案:

答案 0 :(得分:3)

This是非常好的例子,可以将admob集成到Android应用程序中。

您的问题不仅仅是放入清单文件中。

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

答案 1 :(得分:1)

链接中的问题有点旧。你应该做一些改变:

使用最新版本的AdMob。最新版本是6.4.1,您可以找到它here

您的清单应该有更多的配置更改声明如下:

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

检查the official documentation中的所有说明。

答案 2 :(得分: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>