Hide accounts of users that should not be shown

Bug: 318825347
Change-Id: If0f5cae8648e70c0e9c039d9b73cdc5be72b09d3
This commit is contained in:
Oliver Scott
2023-12-29 21:10:28 -05:00
committed by Jason Chiu
parent d06d6affb4
commit 3e2dcefff0

View File

@@ -42,6 +42,7 @@ import android.content.IntentFilter;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.pm.UserInfo;
import android.content.pm.UserProperties;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
@@ -336,6 +337,10 @@ public class AccountPreferenceController extends AbstractPreferenceController
}
return;
}
if (mUm.getUserProperties(userInfo.getUserHandle()).getShowInSettings()
== UserProperties.SHOW_IN_SETTINGS_NO) {
return;
}
final Context context = mContext;
final ProfileData profileData = new ProfileData();
profileData.userInfo = userInfo;