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; }
You need to start an intent using a flag to clear the activities on top of the actual activity.
public void onBackPressed() { Intent intent = new Intent(this, HomeActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); this.startActivity(intent); this.finish(); }