Banner Ads

First of all, you need to create a AdstronomicAdsBanner object and init it (with your application context in parameter). After this, you have two possibilities:

  • Display as quickly as possible the ad after loading it. For this, you can simply call the method Adstronomic.loadAndShow with the app context and the ad object as parameters.

  • Just load the ad in the background by calling the method loadAd. And, when you want to show the ad (after a specific event - For example: click on a button), you can do it with the method show.

So, for example:

AdstronomicAdsBanner bannerAd = new AdstronomicAdsBanner(getApplicationContext());
Adstronomic.loadAndShow(this, bannerAd);

or

AdstronomicAdsBanner bannerAd = new AdstronomicAdsBanner(getApplicationContext());
bannerAd.loadAd();

...

// Call when a button is pressed for example
if (bannerAd.isAdLoaded()) {
    bannerAd.show(getSupportFragmentManager());
}

Last updated