LoginSignup
6
5

More than 5 years have passed since last update.

AndroidでAdMobの全画面広告(インタースティシャル広告)実装時にハマったこと

Posted at

https://developers.google.com/mobile-ads-sdk/docs/admob/advanced
のページのSample通りに実装したあと、単純に

displayInterstitial()

を呼び出したらはまった。
どうやら、広告データを読み込んでから表示するようなので、Activity遷移後すぐに表示しようとすると、広告データを読み込む前で表示されない。

interstitial.setAdListener(new AdListener(){
public void onAdLoaded(){
displayInterstitial();
}
});

で解決。

6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5