I wanna getting access to Android Settings from my application with a click of button in Activity A, after this when user click the back button in Settings, it will bring the user to Activity B…
The code below that I am running, is able to bring me to Settings from Activity A, but when I am in the Settings page and click the back button, it brings me back to Activity A, can someone teach me how to do in order to bring me to Activity B when i click back button in Settings?
startActivity(new Intent(android.provider.Settings.ACTION_SECURITY_SETTINGS));
1 Answer