Search code examples
androidstartapp

Stop showing add onBackpressed


I am using startApp-SDK . on pressing back button from mainActivity. it shows an add by default. I want to stop showing that add on Backpressed. MainActivity extends from TabActivity and contains three tabs on pressing back from any of them show ads. I have override onBackpressed. in all of them. but still showing those ads.

    @Override
public void onBackPressed() {

    super.onBackPressed();
}

and also tried some other way around but problem don't solve .. Thanks in advance..


Solution

  • I have find the solution to my question . May be it help someone else..

    whlile declaring StartappAd

    StartAppSDK.init(this, "105605040","205467351", false);  // true for showing adds.
    

    //NOTE: If you don't wish your application to display ads when pressing the Home button,Back Button simply pass false in the last parameter