2016-12-23 73 views
0

我在應用程序中添加了AdMob。我已閱讀並完成由火力點全部istruction,這是我grandle文件:Android AdMob不顯示

dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
testCompile 'junit:junit:4.12' 
compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.android.support:design:23.4.0' 
compile 'com.android.support:support-v4:23.4.0' 
//compile 'com.google.android.gms:play-services:8.4.0' 
compile 'com.google.android.gms:play-services:9.0.0' 
//compile 'com.google.android.gms:play-services:9.4.52' 
compile files('libs/apache-httpcomponents-httpclient.jar') 
compile 'com.google.maps.android:android-maps-utils:0.4.3' 
compile 'com.twotoasters.clusterkraf:library:1.0.2' 
compile 'de.hdodenhof:circleimageview:2.0.0' 
compile 'com.android.support:multidex:1.0.0' 
compile 'com.android.support:cardview-v7:24.0.0-beta1' 
compile 'com.mcxiaoke.volley:library:1.0.19' 
compile 'com.uncopt:android.justified:1.0' 
compile 'com.google.firebase:firebase-core:9.0.0' 
compile 'com.google.firebase:firebase-ads:9.0.0' 

//compile 'com.facebook.android:facebook-android-sdk:[4,5)' 
compile 'com.facebook.android:facebook-android-sdk:4.5.0' 
compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
    transitive = true; 
} 
compile('com.crashlytics.sdk.android:crashlytics-ndk:[email protected]') { 
    transitive = true; 
} 
compile 'com.github.paolorotolo:appintro:4.0.0' 
compile 'com.karumi:dexter:2.3.0' 
compile 'com.weiwangcn.betterspinner:library-material:1.1.0' 
compile 'com.squareup.picasso:picasso:2.5.2' 
compile 'com.github.clans:fab:1.6.2' 
//compile 'com.google.android.gms:play-services:10.0.1' 
} 

apply plugin: 'com.google.gms.google-services' 

我有火力加上我的應用程序和包名的指紋

這是代碼佈局:

<LinearLayout 
    android:layout_width="300dp" 
    android:layout_height="250dp" 
    android:layout_gravity="center" 
    android:id="@+id/adLinear" 
    android:layout_marginTop="10dp" 
    android:background="#FFFFFF"> 
    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_centerHorizontal="true" 
     android:layout_alignParentBottom="true" 
     ads:adSize="MEDIUM_RECTANGLE" 
     ads:adUnitId="@string/banner_ad_unit_id" 
     android:layout_marginTop="10dp"> 
    </com.google.android.gms.ads.AdView> 
</LinearLayout> 

現在,當我運行應用程序時,我沒有看到真正的廣告,而是一般的adMob廣告,上面寫着我的橫幅廣告。 在我的代碼中有些東西有爭議,或者看到我必須在Google Play上公開我應用程序的真實廣告?

感謝

當我運行應用程序,我看到類似的圖像 enter image description here

,如果是正確的,如果我必須在谷歌發佈的應用起到看到一個真正的advrtise

+0

嘗試adSize =「BANNER」 – xbadal

+0

您需要在admob.com上創建一個實時廣告單元ID,然後將其插入到您的AdView中(ads:adUnitId屬性所在的位置)。 –

回答

1
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/adLinear" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_gravity="center" 
    android:layout_marginTop="10dp" 
    android:background="#FFFFFF"> 

    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     ads:adSize="MEDIUM_RECTANGLE" 
     ads:adUnitId="@string/banner_ad_unit_id" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginTop="10dp"></com.google.android.gms.ads.AdView> 
</LinearLayout> 
我想

在java文件中顯示廣告使用這個

private void adView() { 
    mAdView = (AdView) findViewById(R.id.ad_view); 
    MobileAds.initialize(getApplicationContext(), getResources().getString(R.string.admob_banner_id)); 
    final AdRequest adRequest = new AdRequest.Builder().build(); 
    mAdView.loadAd(adRequest); 
} 

用此替換您的代碼。實際上,問題在於廣告尺寸大於您的版面尺寸,這就是您面臨此問題的原因。

+0

當我運行應用程序時,我已經設置了您的代碼,我總是看到AdMob測試的橫幅,而不是真正的廣告。我必須在Playstore上發佈才能看到真正的廣告? – APPGIS

+0

顯示你的java代碼 –

+0

我添加了我的結果圖片...我想如果我必須發佈在谷歌播放應用程序看到一個真正的廣告 – APPGIS