こんにちは、Android アプリケーションで Admob インタースティシャル広告を使用していますが、アプリケーションでインタースティシャル広告が全画面表示されますが、バナー広告のようなインタースティシャル広告を表示したいと考えています。
ここに私の広告コード:
private InterstitialAd interstitialAds = null;
this.interstitialAds = new InterstitialAd(this, "ca-app-pub-25842888517785");
this.interstitialAds.setAdListener(this);
AdRequest adr = new AdRequest();
// add your test device here
adr.addTestDevice("8E452640BC83C672B070CDCA8AB9B06B");
interstitialAds.loadAd(adr);
広告ビューのように、レイアウト xml ファイルにインタースティシャル広告を作成する方法はありますか?
よろしくお願いします。