AdMob インタースティシャルは全画面の広告で、ゲームアプリ等に良く使われます。
[/wc_column]
[/wc_row]
API 29
AdMob Interstitial
まず最初に、Android Studioで新しくプロジェクトを作成する途中段階でこの広告を設定する(Google AdMob Ads Activity)という箇所があります。それでつくると既に設定されたものが出来上がっています。
これでそのまま実行すると広告が表示されます。
インタースティシャル広告の実装
Google AdMob Ads Activityとは別に簡単な実装の手順はこのようにやります。
- インタースティシャルを初期化
- インタースティシャルをロードさせる
- ロードが終わったら表示
ロードにはある程度時間がかかるのでロード終了を確認して表示作業に移行する必要があります。
gradleの設定が必要です。
com.google.android.gms:play-services-ads:
を追加してください、またバージョンは適宜合わせてください
build.gradle(Module: app)
1 2 3 4 5 |
... dependencies { implementation 'com.google.android.gms:play-services-ads-lite:20.6.0' ... } |
Interstitial広告は強力であるため毎回表示しているとユーザーから嫌われます。表示頻度を数回に1回などのような調整が必要でしょう。
Unit ID(パブリッシャーID)とApp IDはそれぞれテスト用ですので、本番では自分の広告用IDを入れてください。
MainActivity.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
//package your.package.name; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; import androidx.annotation.NonNull; import com.google.android.gms.ads.AdRequest; import com.google.android.gms.ads.LoadAdError; import com.google.android.gms.ads.MobileAds; import com.google.android.gms.ads.interstitial.InterstitialAd; import com.google.android.gms.ads.interstitial.InterstitialAdLoadCallback; public class MainActivity extends AppCompatActivity { private InterstitialAd mInterstitialAd; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // 初期化 MobileAds.initialize(this, initializationStatus -> {}); AdRequest adRequest = new AdRequest.Builder().build(); InterstitialAd.load(this, "ca-app-pub-3940256099942544/1033173712", adRequest, new InterstitialAdLoadCallback() { @Override public void onAdLoaded(@NonNull InterstitialAd interstitialAd) { // The mInterstitialAd reference will be null until an ad is loaded. mInterstitialAd = interstitialAd; Toast.makeText(MainActivity.this, "onAdLoaded()", Toast.LENGTH_LONG).show(); } @Override public void onAdFailedToLoad(@NonNull LoadAdError loadAdError) { // Handle the error mInterstitialAd = null; Toast.makeText(MainActivity.this, "onAdFailedToLoad() with error", Toast.LENGTH_LONG).show(); } }); Button buttton = (Button)this.findViewById(R.id.button); buttton.setOnClickListener(this::onClick); } private void onClick(View v) { if (mInterstitialAd != null) { mInterstitialAd.show(MainActivity.this); } else { Toast.makeText(MainActivity.this, "The interstitial ad wasn't ready yet.", Toast.LENGTH_LONG).show(); } } } |
activity_main.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> |
AndroidManifest.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?xml version="1.0" encoding="utf-8"?> ... <application ... > <!-- Sample AdMob App ID: ca-app-pub-3940256099942544~3347511713 --> <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-3940256099942544~3347511713"/> <activity ... </activity> </application> </manifest> |
実行すると広告が1回だけ表示させられます。
テンプレートのGoogle AdMob Ads ActivityではFullScreenContentCallbackを使って繰り返し広告を表示する方法を提示しています。
関連ページ:
Reference: