Android,admob广告没有显示

时间:2015-01-31 00:00:49

标签: android

我正在尝试在我的Android应用程序中实现横幅广告。我已经使用Gradle来下载依赖项等。

在我希望广告显示的活动中,我有:

<com.google.android.gms.ads.AdView
        android:id="@+id/ad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        ads:adSize="BANNER"
        ads:adUnitId="@string/ad_mob_id" />

ad_mob_id是

ca-app-pub-3940256099942544/6300978111

对于测试广告,我从https://developers.google.com/mobile-ads-sdk/docs/admob/android/quick-start#step_1_modify_the_main_activity_layout

获取了该广告

但是,当我运行活动时,不显示任何内容,也没有生成错误/警告。

我错过了另一步吗?

1 个答案:

答案 0 :(得分:0)

AdView mAdView = (AdView) getView().findViewById(R.id.adView); // locate the id the banner view
// if you do not use fragments and you are using it directing the remove the getView();
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest); // load it..that's all and you will see logs on it

我从您发布的链接中获取了它,它就是您所需要的一切。