I'm letting users access the device Settings via a menu within my app:
Intent dialogIntent = new Intent(android.provider.Settings.ACTION_SETTINGS);
startActivity(dialogIntent);
However, once user is done with making changes in Settings, I need them to be able to return to my app. We made modifications to Android to remove the soft buttons, so using the standard back button is a no-go.
Is there a way to enable the standard back button to go back in history or to go up from Settings back to my app?
Thanks!