Open Android´s settings menu with code

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

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

2条回答
  •  醉话见心
    2020-12-19 18:51

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

提交回复
热议问题