2014-03-26 76 views
0

我在我的android應用程序的最後一步:我想添加一個橫幅。我的應用程序工作正常沒有橫幅,但有一個崩潰(當我打開應用程序的橫幅我有消息「我的應用程序已停止」)。所以我嘗試在下面的HelloWorld這樣一個非常簡單的應用程序中添加一個橫幅,以查看錯誤的位置,但是當我打開應用程序時,出現相同類型的錯誤,儘管沒有...這是我的MainActivity(無特別爲你好的世界而...)。Android應用程序崩潰時添加廣告

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"/> 

我看到其他消息。我編程「上面」api13(這對廣告很重要),我下載了googlemobileadsandroidsdk.zip(版本6.4.1)。我將它添加爲一個外部jar,並在「訂單和導出」中打勾。看起來沒有錯誤(所有的log貓都是綠色的)。那麼我很困惑。謝謝 !

+0

發佈您的崩潰日誌 – Libin

+0

我有任何新的錯誤,當我作爲Android應用程序啓動應用程序。 – Glork

+0

你是否在使用android studio和gradle? – Libin

回答

0

如果您使用Google廣告庫(GoogleAdMobAdsSdk-x.x.x.jar),那麼您必須使用。

<com.google.ads.AdView> 

,如果你使用谷歌播放,然後

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

注意這一點:

已過時。 2014年8月1日,Google Play將停止接受使用舊版獨立版Google移動廣告SDK v6.4.1或更低版本的新應用或更新應用。您必須先升級到Google Play版本的Mobile Ads SDK。

+0

我正在使用:6.4.1 \t GoogleMobileAdsSdkAndroid.zip – Glork

+0

我現在檢查它,如果這是問題 – Glork

+0

不存在仍然存在的問題,雖然我現在在我的xml中使用。我也現在在我的清單中使用android:name =「com.google.android.ads.AdActivity」 – Glork