判断系统的主从用户
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
// true 主用户 false 从用户
UserManager userManager = (UserManager)context.getSystemService(Context.USER_SERVICE);
boolean isPrimary = !userManager.isManagedProfile();
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
// true 主用户 false 从用户
UserManager userManager = (UserManager)context.getSystemService(Context.USER_SERVICE);
boolean isPrimary = !userManager.isManagedProfile();
}
本文标题:android 多用户怎么判断主从用户
本文链接:https://www.haomeiwen.com/subject/xngfbdtx.html
网友评论