Igor
Igor

Reputation: 205

Open Android´s settings menu with code

Somebody knows how can I open Android´s Settings screen with code? Thank you.

Upvotes: 3

Views: 4986

Answers (2)

Pasha
Pasha

Reputation: 2425

I'm not sure but, maybe this help you:

startActivity(new Intent(Settings.ACTION_SETTINGS));

Upvotes: 5

Rasel
Rasel

Reputation: 15477

 Intent intent = new Intent(Settings.ACTION_SETTINGS);
            intent.addCategory(Intent.CATEGORY_LAUNCHER);           
            startActivity(intent);

Upvotes: 2

Related Questions