In Android, you can @Override onBackPressed and start a new Intent to launch an activity.
For some reason, in OnBackPressed you can start the intent just fine, and the new activity launches; but if I were to start a new intent in the default @Override onPause method, the new activity doesn't technically launch until I open my application up once again.
Is there a way to make the home button launch my 2nd activity before the app calls onPause?