Open Android´s settings menu with code

后端 未结 2 406
谎友^
谎友^ 2020-12-19 18:26

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

相关标签:
2条回答
  • 2020-12-19 18:48

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

    startActivity(new Intent(Settings.ACTION_SETTINGS));
    
    0 讨论(0)
  • 2020-12-19 18:51
     Intent intent = new Intent(Settings.ACTION_SETTINGS);
                intent.addCategory(Intent.CATEGORY_LAUNCHER);           
                startActivity(intent);
    
    0 讨论(0)
提交回复
热议问题