Android AdMob现在显示在我的手机上

时间:2013-04-23 22:03:17

标签: java android xml

我正在尝试将AdMob添加到我的手机上,我在admob网站上注册并且我获得了绿色圆点的状态说Active,但是当我在手机上运行app时,添加无处可见。我google了很多,但我尝试的一切都没有得到任何结果。

这是我在主布局xml文件中添加的内容:

     <com.google.ads.AdView
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/button1"
    android:layout_alignParentBottom="true"
    app:adSize="SMART_BANNER"
    app:adUnitId="a15176e8a6c0467"
    ads:loadAdOnCreate="true" >
</com.google.ads.AdView>

我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="hr.sv.mate.crypt"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <uses-permission android:name="android.permission.RECEIVE_SMS" >
    </uses-permission>
      <uses-permission android:name="android.permission.INTERNET"/>
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <receiver android:name="hr.sv.mate.crypt.MySmsRecivier" >
            <intent-filter>
                <action android:name="android.provider.Telephony.SMS_RECEIVED" >
                </action>
            </intent-filter>
        </receiver>

        <activity
            android:name="hr.sv.mate.crypt.MainActivity"
            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|screenLayout|uiMode|screenSize|smallestScreenSize"/>

    </application>


</manifest>

这就是我从主要活动中调用add的方式:

        adRequest = new AdRequest();
    adView = new AdView(this, AdSize.BANNER, "a15176e8a6c0467");
    mainLayout = (RelativeLayout)findViewById(R.id.layout);
    mainLayout.addView(adView);
    adView.loadAd(adRequest);

但仍然没有显示,我尝试在几个不同版本中更改上面的代码,认为“也许我称之为添加错误”,但没有任何帮助。任何人都可以在这里找到我做错的事吗?

2 个答案:

答案 0 :(得分:0)

尝试添加request.addTestDevice(AdRequest.TEST_EMULATOR)并查看横幅是否显示:如果它出现了问题,请在发布之前删除该行,一切都会正常;如果它不是AdMob服务器的问题,只需等待Google工程师解决它们。

答案 1 :(得分:0)

尝试通过AdMOB网站将广告设置为自动刷新。