I want to go on home screen when I press device\'s back button.I am using this code..
public void onBackPressed() { this.finish(); return; }
When you call NewAcitivy call finish().After startActivity so the previous acitivity gets closed.
finish()
startActivity
Then use
@Override public void onBackPressed() { super.onBackPressed(); this.finish(); }