我尝试了许多博客中的东西,但没有一个给出一步一步的解决方案。我应该在 AdMob 网站上编辑某些内容吗?我通过站点和应用程序选项卡下的广告坐席/应用程序选项创建了站点。
我使用了这段代码:
interstitial = new InterstitialAd(this, "MyAdMobID");
// Set Ad Listener to use the callbacks below
interstitial.setAdListener(this);
// Create ad request
AdRequest adRequest = new AdRequest();
adRequest.addTestDevice(AdRequest.TEST_EMULATOR);
// Begin loading your interstitial
interstitial.loadAd(adRequest);
adRequest.setTesting(true);