2015-01-09 156 views
0

我只是想在我這個代碼的應用程序時顯示橫幅:Android的AdMob的空橫幅

XML文件:

<?xml version="1.0" encoding="utf-8"?> 

    <LinearLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/welcome" 
     android:layout_width="fill_parent" 
     android:orientation="vertical" 
     android:layout_height="fill_parent" 
     android:background="#00BFFF" 
     android:gravity="center_horizontal"> 
<!--Put form controls here--> 

<LinearLayout 
    android:layout_weight="1" android:layout_gravity="top" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <Button 
     android:id="@+id/createevent" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/createSportEvent" 
     android:layout_marginTop="10dp" 
     android:background="@drawable/blue_button" 
     /> 

    <Button 
     android:id="@+id/joinevent" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="@string/joinSportEvent" 
     android:layout_marginTop="5dp" 
     android:background="@drawable/blue_button" 
     /> 

<!--  <TextView --> 
<!--   android:layout_width="fill_parent" --> 
<!--   android:layout_height="wrap_content" --> 
<!--   android:gravity="center" --> 
<!--   android:text="@string/welcome" --> 
<!--   android:textColor="#FFFFFF" --> 
<!--   android:textSize="30sp" --> 
<!--   android:layout_marginTop="60dp" /> --> 



    </LinearLayout> 

    <LinearLayout android:layout_weight="4" 
    android:layout_gravity="bottom" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="#ffffff" 
    > 

<com.google.android.gms.ads.AdView xmlns:ads="http://schemas.android.com/apk/res-auto" android:id="@+id/adView" 
    android:layout_width="200dp" 
    android:layout_height="300dp" 
    ads:adUnitId="ca-app-pub-4655928626183886/8875858459" 
    ads:adSize="BANNER" 
    /> 
</LinearLayout> 

</LinearLayout> 

JAVA文件:

AdView adView = (AdView) findViewById(R.id.adView); 
    AdRequest.Builder adRequestBuilder = new AdRequest.Builder(); 
    adRequestBuilder.addTestDevice("005d82a31685xxxx"); 
    adView.loadAd(adRequestBuilder.build()); 

我有谷歌-play-services.jar在我的Java_Buid_Path中。

,並在我的Android_Manifest.xml:

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

<activity android:name="com.google.android.gms.ads.AdActivity" 
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"android:theme="@android:style/Theme.Translucent" /> 

我在AdMob廣告的網站增加了一個旗幟,以我的移動應用程序來獲得adUnitId設置。

我不明白爲什麼沒有顯示橫幅。

非常感謝您的幫助。

回答

1

這個問題可能有幾個原因。

要找出確切導致問題的原因,請從Activity開始,並針對「廣告」過濾Logcat

它會告訴你是什麼原因造成的問題。

除了錯誤的ad-unit-id之外的一個真正常見的錯誤是,如果沒有足夠的空間來顯示有關高度的banner。確保你有足夠的空間。請給UpdateLogCat

但我不能說更沒有你的過濾logcat的和你的XML ..

+0

是的,這是一個良好的開端。此外,雖然看起來很明顯,但請確保您的設備已連接到互聯網。 – 5happy1 2015-01-10 01:02:11

+0

@ 5happy1如果你喜歡它,隨時upvote – Mike 2015-01-10 01:44:48

+0

感謝您的答案。我的設備已連接到互聯網。我的logcat: – 2015-01-11 22:57:47