Skip to content Skip to sidebar Skip to footer

OnBackPressed Never Gets Called

I have a problem with these functions. I want to override the native back button, but the functions never get called and I don't understand where it's the mistake. public boolean o

Solution 1:

Try this:

@Override
public void onBackPressed(){
    mCountDownTimer.cancel();
    Intent in = new Intent(this, MyActivity2.class);
    startActivity(in);

    super.onBackPressed();

}// end of onBackpressed

Post a Comment for "OnBackPressed Never Gets Called"