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 can try this
@Override public void onBackPressed() { Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(startMain); }