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();
}
}
}
网友评论