-9

I need to override back button in my activity to do a certain task. I want this code to be executed when the back button is pressed.

Intent intent = new Intent(this, MainClass.class);
Jk1
  • 11,233
  • 9
  • 54
  • 64

1 Answers1

-5
@Override
public void onBackPressed()
{
     Intent intent = new Intent(this, MainClass.class);
     startActivity(intent);
     super.onBackPressed();  // optional depending on your needs
}
Soumil Deshpande
  • 1,622
  • 12
  • 14