美文网首页
2019-03-29Android系统打开系统设置界面

2019-03-29Android系统打开系统设置界面

作者: gdlooker | 来源:发表于2019-03-29 15:30 被阅读0次
    Intent localIntent=null;
            if (Build.VERSION.SDK_INT > 10) {
                localIntent = new Intent("android.settings.WIRELESS_SETTINGS");
            }
              
                localIntent.setComponent(new ComponentName("com.android.settings", "com.android.settings.WirelessSettings"));
                localIntent.setAction("android.intent.action.VIEW");
            
    

    相关文章

      网友评论

          本文标题:2019-03-29Android系统打开系统设置界面

          本文链接:https://www.haomeiwen.com/subject/mrglbqtx.html