进入系统设置界面

private static final StringACTION_SETTING =”android.settings.SETTINGS”;

Intent intent =new Intent(ACTION_SETTING);

 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  //  非Activity类型界面需要添加这句代码

 context.startActivity(intent);

    原文作者:zhengLH
    原文地址: https://www.jianshu.com/p/6b2b5c22f233
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞