On pressing the back button, I\'d like my application to go into the stopped state, rather than the destroyed state.
In the Android docs it states:
Override onBackPressed() after android 2.0. Such as
@Override public void onBackPressed() { moveTaskToBack(true); }