Android AdMob 未显示
Android AdMob doesn't show
我已经在我的应用程序中添加了 AdMob。我已经阅读并完成了 firebase 的所有说明,这是我的 grandle 文件:
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:2.6.0@aar') {
transitive = true;
}
compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.3@aar') {
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'
我已经在 firebase 上添加了我的应用程序和包名称的指纹
这是代码布局:
<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 广告。
我的代码中有问题,或者要查看真正的广告,我必须 public 在 google Play 商店我的应用程序上?
谢谢
当我 运行 应用程序时,我看到了这张相似的图片
我想如果是正确的,如果我必须在 google 上发布应用程序才能看到真正的广告
<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);
}
将您的代码替换为 this.Actually 问题是广告尺寸大于您的布局尺寸,这就是您遇到此问题的原因。
我已经在我的应用程序中添加了 AdMob。我已经阅读并完成了 firebase 的所有说明,这是我的 grandle 文件:
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:2.6.0@aar') {
transitive = true;
}
compile('com.crashlytics.sdk.android:crashlytics-ndk:1.1.3@aar') {
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'
我已经在 firebase 上添加了我的应用程序和包名称的指纹
这是代码布局:
<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 广告。 我的代码中有问题,或者要查看真正的广告,我必须 public 在 google Play 商店我的应用程序上?
谢谢
当我 运行 应用程序时,我看到了这张相似的图片
我想如果是正确的,如果我必须在 google 上发布应用程序才能看到真正的广告
<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);
}
将您的代码替换为 this.Actually 问题是广告尺寸大于您的布局尺寸,这就是您遇到此问题的原因。