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);
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);
@Override
public void onBackPressed()
{
Intent intent = new Intent(this, MainClass.class);
startActivity(intent);
super.onBackPressed(); // optional depending on your needs
}