12

私は多くのブログから物事を試しましたが、段階的な解決策を提供したものはありませんでした。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);
4

9 に答える 9

13

最後のAndroidフレームワークを使用して、広告を閉じるたびにload()関数を呼び出す必要があることがわかりました。

import com.google.android.gms.ads.*;
import android.os.Handler;
import android.os.Looper;
import android.app.Activity;

class MyActivity extends Activity implements AdListener {
  private InterstitialAd adView;  // The ad
  private Handler mHandler;       // Handler to display the ad on the UI thread
  private Runnable displayAd;     // Code to execute to perform this operation

  @Override
  public void onCreate(Bundle savedInstanceState) {
    adView = new InterstitialAd(mContext);
    adView.setAdUnitId("ca-app-pub-XXXXXXXXXX");
    adView.setAdListener(this);
    mHandler = new Handler(Looper.getMainLooper());
    displayAd = new Runnable() {
      public void run() {  
        runOnUiThread(new Runnable() { 
          public void run() { 
            if (adView.isLoaded()) {
              adView.show();
            }
          }
        });
      }
    };
    loadAd();
  }

  @Override
  public void onAdClosed() {
    loadAd(); // Need to reload the Ad when it is closed.
  }

  void loadAd() {
    AdRequest adRequest = new AdRequest.Builder()
    //.addTestDevice(AdRequest.DEVICE_ID_EMULATOR)
   .build();

    // Load the adView object witht he request
    adView.loadAd(adRequest);
  }

  //Call displayInterstitial() once you are ready to display the ad.
  public void displayInterstitial() {
    mHandler.postDelayed(displayAd, 1);
  }
}
于 2014-06-10T20:51:45.483 に答える
11

バナーとは異なり、インステリアル広告は一度読み込まれると自動的に表示されません。AdMobのonReceiveAd()コールバックをリッスンする必要があり、そのコールバック内でinterstital.show()、インタースティシャルを表示するために呼び出します。

public YourActivity extends Activity implements AdListener {
  ...

  @Override
  public void onReceiveAd(Ad ad) {
    Log.d("OK", "Received ad");
    if (ad == interstitial) {
      interstitial.show();
    }
  }
}

ここでコード例を確認してください。この例では、インタースティシャルが受信されるとすぐに表示されます。または、ゲームレベルの終了時など、インタースティシャルを表示する適切な時間まで待機して、インタースティシャルを表示interstitial.isReady()できるかどうかを確認することもできます。

于 2012-06-25T20:13:56.380 に答える
6

あなたはもうAdListenerを実装することはできません、私はそれをこのように使用しました:

final InterstitialAd mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId(getResources().getString(R.string.interstitial_ad_unit_id));
AdRequest adRequestInter = new AdRequest.Builder().build();
mInterstitialAd.setAdListener(new AdListener() {
    @Override
    public void onAdLoaded() {
        mInterstitialAd.show();
    }
});
mInterstitialAd.loadAd(adRequestInter);

interstitial_ad_unit_idという名前のstrings.xmlに独自のIDを配置するか、置換します

getResources().getString(R.string.interstitial_ad_unit_id)

あなたのIDで。

于 2015-05-02T16:11:31.290 に答える
3

このサンプルコードがお役に立てばと思います。

AndroidアプリにAdMobインタースティシャル広告を追加する方法

この例では、ソースコード全体が表示されます。また、一般的なエラーに対するいくつかの解決策も提供します。たとえば、onFailedToReceiveAdエラーの解決策であり、広告が返されない解決策です。そこからソースコードをダウンロードすることもできます。

于 2013-06-18T15:33:53.380 に答える
1

参考までに、このinterstitial.isReady()メソッドはサポートされなくなりました。これは正しい方法です:

if (interstitial.isLoaded()) {
    interstitial.show();
}
于 2014-03-03T03:33:13.323 に答える
1

アプリを開いたときにこの関数を呼び出します。

InterstitialAd interstitial;

public void AdMob() {
    AdRequest adRequest = new AdRequest.Builder().addTestDevice("YOUR_TEST_DEVICE_ID").build();
    interstitial = new InterstitialAd(this);
    interstitial.setAdUnitId("YOUR_AD_ID");
    interstitial.setAdListener(new AdListener() {
        @Override
        public void onAdLoaded() {
            super.onAdLoaded();
            //Ads loaded
        }

        @Override
        public void onAdClosed() {
            super.onAdClosed();
            //Ads closed
        }

        @Override
        public void onAdFailedToLoad(int errorCode) {
            super.onAdFailedToLoad(errorCode);
            //Ads couldn't loaded
        }
    });
    interstitial.loadAd(adRequest);
}

次に、広告を表示できます。

if (interstitial.isLoaded()){
interstitial.show();
}

広告を表示する前に準備する必要があります。これらは、デバイスのインターネット速度に応じて3〜5秒かかりました。

于 2016-09-23T23:12:47.897 に答える
0

バナー広告とインタースティシャル広告の追加:

  AdView mAdView;
        InterstitialAd interstitialAd;
        ProgressDialog pd;

        void showAds(){
            if(interstitialAd.isLoaded()){
                interstitialAd.show();
            }
        }
        public void initAds(){
            mAdView = (AdView) findViewById(R.id.adView);

            AdRequest adRequest = new AdRequest.Builder().build();
            mAdView.loadAd(adRequest);

            interstitialAd=new InterstitialAd(this);
            interstitialAd.setAdUnitId(getResources().getString(R.string.inetial3));
            AdRequest adRequest1=new AdRequest.Builder().build();
            interstitialAd.loadAd(adRequest1);
        }

およびXML:

<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        ads:adSize="BANNER"
        ads:adUnitId="@string/banner_ad_unit_id2"
        android:layout_gravity="bottom|center">
    </com.google.android.gms.ads.AdView>
于 2018-06-20T17:19:54.630 に答える
0

MainActivity.javaでこれを試してください


 private InterstitialAd interstitial; 

 // Initialize the Mobile Ads SDK 
        MobileAds.initialize(this, getString(R.string.admob_app_id)); 
        AdRequest adIRequest = new AdRequest.Builder().build(); 

        // Prepare the Interstitial Ad Activity 
        interstitial = new InterstitialAd(MainActivity.this); 

        // Insert the Ad Unit ID 
       //add admob_interstitial_id unit id in string file 
        interstitial.setAdUnitId(getString(R.string.admob_interstitial_id)); 

        // Interstitial Ad load Request 
        interstitial.loadAd(adIRequest); 

        // Prepare an Interstitial Ad Listener 
        interstitial.setAdListener(new AdListener()  
{ 
            public void onAdLoaded() 
            { 
                // Call displayInterstitial() function when the Ad loads 
                displayInterstitial(); 
            } 
        }); 
    } 

    public void displayInterstitial() 
    { 
        // If Interstitial Ads are loaded then show else show nothing. 
        if (interstitial.isLoaded()) { 
            interstitial.show(); 
        } 
    } 
于 2019-08-26T01:07:36.943 に答える
0

InterstitialAd mInterstitialAd;

  //To load InterstitialAd ads

//app_id for test ca-app-pub-3940256099942544~3347511713


//full_id for test ca-app-pub-3940256099942544/1033173712

MobileAds.initialize(this, getString(R.string.app_id)); 
mInterstitialAd = new InterstitialAd(this);

mInterstitialAd.setAdUnitId(getString(R.string.full_id));

mInterstitialAd.loadAd(new AdRequest.Builder().build());

mInterstitialAd.setAdListener(new AdListener() {


@Override

public void onAdClosed() {

// Load the next interstitial

mInterstitialAd.loadAd(new AdRequest.Builder().build());

}

});

//To show ads
 if (mInterstitialAd.isLoaded()) {
 mInterstitialAd.show();
 } else {
Log.d("TAG", "The interstitial wasn't loaded yet.");
  }
于 2019-12-10T06:20:45.037 に答える