Home / Android / Interstitials para anuncios estáticos o de vídeo / Ejemplo

Interstitials para anuncios estáticos o de vídeo

Ejemplo

Ejemplo de uso mínimo:

public class InterstitialActivity extends Activity {

TappxInterstitial tappxInterstitial;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tappxInterstitial = new TappxInterstitial(InterstitialActivity.this, "**YOUR-APP-KEY**");
tappxInterstitial.setAutoShowWhenReady(true);
tappxInterstitial.loadAd();
}

@Override
protected void onDestroy() {
super.onDestroy();
if (tappxInterstitial != null) tappxInterstitial.destroy();
}
}

Para permitir mayor control los interstitials también se pueden mostrar con tres pasos: loadAd, isReady and show.

loadAd carga toda la información necesaria para poder mostrar el anuncio.

tappxInterstitial.loadAd();`

isReady carga toda la información necesaria para poder mostrar el anuncio.

tappxInterstitial.isReady();

show carga toda la información necesaria para poder mostrar el anuncio.

tappxInterstitial.show();

carga toda la información necesaria para poder mostrar el anuncio.