我正在尝试将 AdMob 添加到我的手机中,我在 admob 网站上注册,并且我的状态为“活动”,但当我在手机上运行应用程序时,无处可见添加。我用谷歌搜索了很多,但我尝试的一切都没有得到任何结果。
这是我在主布局 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);
但仍然没有显示,我尝试在几个不同的版本中更改上面的代码,认为“也许我调用添加错误”但没有任何帮助。任何人都可以在这里找到我做错了什么吗?