android - Is there actually a method to disable showing admob's interstital banner after the app was closed? -
interstitial loads in app , showing after closed app. how prevent that? interstital has no methods cancle or destroy.
is solution interstital = null; ???
i'm not sure regarding method might available, can easly prevent it.
you can call finish on activity, if possible.
if not, set flag (boolean) , set false using onpause or onstop events, check flag before calling show () on interstitial.
if (your_fancy_new_flag) { //show interstitial }
Comments
Post a Comment