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 close application from anywhere to call this type of Intent:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
This is the best way for close application from anywhere, on any click event