我的应用程序的屏幕看起来像this Screenshot。
正如你所看到我制作了一个广告应用程序(admob),但是有一个错误,我无法解决。
代码:
private AdView adView;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_fullscreen);
//create adView
adView = (AdView) findViewById(R.id.adView);
AdRequest request = new AdRequest();
adView.loadAd(request);
}
布局:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/linearlayout"
android:orientation="vertical">
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="....."
ads:testDevices="....." >
</com.google.ads.AdView>
</LinearLayout>
我在logcat中没有收到错误消息,应用程序没有崩溃。希望你能帮忙! 我已经重新启动手机并重启了eclipse。
编辑:清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stefan.game"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />
<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" >
<activity
android:name="com.stefan.game.FullscreenActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:theme="@style/FullscreenTheme" >
<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>
答案 0 :(得分:1)
首先尝试干净的构建。可能是您正在应用错误的资源ID。
否则,请尝试删除应用和活动的主题属性。如果您在上面提供的布局XML是完整的XML,那么我认为您错误配置了主题,以便您有一个列表或重复背景,并将其合并到您的活动布局中。
答案 1 :(得分:0)
您应该尝试创建一个整数来计算广告的实例。 首先看看你的整数是否优于1。