Reputation: 205
Somebody knows how can I open Android´s Settings screen with code? Thank you.
Upvotes: 3
Views: 4986
Reputation: 2425
I'm not sure but, maybe this help you:
startActivity(new Intent(Settings.ACTION_SETTINGS));
Upvotes: 5
Reputation: 15477
Intent intent = new Intent(Settings.ACTION_SETTINGS);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
startActivity(intent);
Upvotes: 2