Disambiguate categories in Settings > Trusted Credentials

Use fixed category names (e.g. 'Personal' and 'Work') on Trusted Credentials
screen instead of names of profiles that may be the same (or similar) for both.

Bug: 17629895
Change-Id: I25b39310f7b9f445d2724be046a16cc82f5d1a9a
This commit is contained in:
Zoltan Szatmary-Ban
2014-09-30 16:30:07 +01:00
parent 5c664d8e20
commit af0f89ff91

View File

@@ -316,7 +316,11 @@ public class TrustedCredentialsSettings extends Fragment {
final TextView title = (TextView) convertView.findViewById(android.R.id.title); final TextView title = (TextView) convertView.findViewById(android.R.id.title);
final UserHandle profile = getGroup(groupPosition); final UserHandle profile = getGroup(groupPosition);
final UserInfo userInfo = mUserManager.getUserInfo(profile.getIdentifier()); final UserInfo userInfo = mUserManager.getUserInfo(profile.getIdentifier());
title.setText(userInfo.name); if (userInfo.isManagedProfile()) {
title.setText(R.string.category_work);
} else {
title.setText(R.string.category_personal);
}
title.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_END); title.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_END);
return convertView; return convertView;