// Declare the InterstitialActivity in AndroidManifest.xml:
//
// In the Activity that will launch the interstitial,
// implement the AdListener interface and add the following:
import com.facebook.ads.*;
private InterstitialAd interstitialAd;
private void loadInterstitialAd() {
interstitialAd = new InterstitialAd(this, "143504002868416_143504296201720");
interstitialAd.setAdListener(this);
interstitialAd.loadAd();
}
@Override
public void onError(Ad ad, AdError error) {
// Ad failed to load
}
@Override
public void onAdLoaded(Ad ad) {
// Ad is loaded and ready to be displayed
// You can now display the full screen add using this code:
interstitialAd.show();
}