开发者

Open Android´s settings menu with code

开发者 https://www.devze.com 2023-03-27 02:07 出处:网络
Somebody know开发者_如何转开发s how can I open Android´s Settings screen with code? Thank you.I\'m not sure but, maybe this help you:

Somebody know开发者_如何转开发s how can I open Android´s Settings screen with code? Thank you.


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

startActivity(new Intent(Settings.ACTION_SETTINGS));


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

精彩评论

暂无评论...
验证码 换一张
取 消