添加广告时Android应用程序崩溃

时间:2014-03-26 17:14:50

标签: android

我在我的Android应用程序的最后一步:我想添加一个横幅。我的应用程序在没有横幅的情况下工作正常但是崩溃时(当我用横幅打开应用程序时,我收到了消息"我的应用已经停止")。所以我尝试在下面的HelloWorld这样一个非常简单的应用程序上添加一个横幅来查看错误的位置,但是当我打开应用程序时我遇到了相同类型的错误,尽管它没有完全正常工作......这里' s我的MainActivity(对于你好世界来说没什么特别的......)。

package com.example.publicite;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}
}

这是我的activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />
<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="my ID for the bann generated by admob"
    ads:loadAdOnCreate="true"
    ads:testDevices="TEST_EMULATOR" />
<Button
    android:id="@+id/votrescore"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="..." />

这是我的清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.publicite"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
    android:minSdkVersion="13"
    android:targetSdkVersion="13" />
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.publicite.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.android.gms.ads.AdActivity"                                     android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

我在stackoverflow上看到了我的问题的其他消息。我编程&#34;以上&#34; api13(这对广告很重要)我下载了googlemobileadsandroidsdk.zip(版本6.4.1)。我将其添加为外部jar,然后在&#34; order中导出并导出&#34;。似乎没有错误(log cat中的绿色都是绿色的)。好吧,我很困惑。谢谢!

1 个答案:

答案 0 :(得分:0)

如果您使用Google广告库(GoogleAdMobAdsSdk-x.x.x.jar),则必须使用。

<com.google.ads.AdView>

如果您使用Google Play,那么

<com.google.android.gms.ads.AdView>

请注意:

已过时。 2014年8月1日,Google Play将停止接受使用旧的独立Google移动广告SDK v6.4.1或更低版本的新应用或更新应用。到那时,您必须升级到Google Play版本的移动广告SDK。