横幅广告和非页内广告单元不起作用

时间:2018-12-04 03:41:02

标签: android admob interstitial

我正在尝试在应用程序上展示我的admob广告,但是我的广告单元无法正常工作 Admob测试广告单元运作良好。

enter image description here this is my code

enter image description here

this is my ad units

enter image description here

1 个答案:

答案 0 :(得分:0)

创建横幅广告时,您要确保横幅广告ID位于xml文件中。

这应该在您的OnCreate中,显然我在您的代码中看不到您的OnCreate,但我只介绍了所有基础。

MobileAds.initialize(this, "Ad ID");
mAdView = findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest); 

此外,如果要测试在模拟器上运行应用程序,则在构建应用程序时应使用“ .addTestDevice()”。希望这会有所帮助。