In android, my app provides a button that the user can click to return them back to the screen that appears when the app is opened (onCreate).
How can I set that button to return the user to the main menu?
I have something like this in a switch statement (on click):
case R.id.return_main:
onCreate();
return;
Where return_main is the id of the button....I know that isn't right but I couldn't think of any other way.
Thanks!