我正在尝试在我的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
获取了该广告
但是,当我运行活动时,不显示任何内容,也没有生成错误/警告。
我错过了另一步吗?
答案 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
我从您发布的链接中获取了它,它就是您所需要的一切。