@Override
public void onBackPressed()
{
Intent intent = new Intent(this, MainClass.class);
startActivity(intent);
super.onBackPressed(); // optional depending on your needs
}
4
solved How do i override back button in my activity? [closed]