3

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

Igor
  • 205
  • 1
  • 8
  • 19

2 Answers2

5

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

startActivity(new Intent(Settings.ACTION_SETTINGS));
Pasha
  • 2,407
  • 18
  • 25
2
 Intent intent = new Intent(Settings.ACTION_SETTINGS);
            intent.addCategory(Intent.CATEGORY_LAUNCHER);           
            startActivity(intent);
Rasel
  • 15,499
  • 6
  • 40
  • 50