美文网首页
MIUI 锁屏显示权限的处理办法

MIUI 锁屏显示权限的处理办法

作者: 肖霄的潇潇 | 来源:发表于2018-03-06 21:58 被阅读0次

    Miui 9 开始 无法通过打开一下页面,来设置系统锁屏。需要用户打开Miui自己的“允许在锁屏上显示应用”权限,才可以设置系统锁屏。开发者无法检测到该权限是否已申请到。现在做法是弹窗提示,有选项“去设置”和“设置过了”,只有在用户点击“设置过了”才不再弹窗,这仅是折中的做法

    public static void toSysLiveWallpaperActivity(Context context) {
    
            if (RomUtils.isMiuiRom()) {
                try {
                    ComponentName componentName = new ComponentName("com.android.wallpaper.livepicker", "com.android.wallpaper.livepicker.LiveWallpaperActivity");
                    Intent intent = new Intent();
                    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    intent.setComponent(componentName);
                    context.startActivity(intent);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    

    相关文章

      网友评论

          本文标题:MIUI 锁屏显示权限的处理办法

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