From mainactivity of my apps, if I press the device's back button I want the user to be taken to the device's home screen to view icons of all other apps. I used the following code but it goes to another activity in myApps.
@Override
public void onBackPressed() {
finish();
System.exit(0);
}