Merge "Only show headers in Master Clear when there are multiple profiles"

This commit is contained in:
TreeHugger Robot
2017-04-19 18:16:58 +00:00
committed by Android (Google) Code Review

View File

@@ -306,11 +306,13 @@ public class MasterClear extends OptionsMenuFragment
.getAuthenticatorTypesAsUser(profileId);
final int M = descs.length;
View titleView = Utils.inflateCategoryHeader(inflater, contents);
final TextView titleText = (TextView) titleView.findViewById(android.R.id.title);
titleText.setText(userInfo.isManagedProfile() ? R.string.category_work
: R.string.category_personal);
contents.addView(titleView);
if (profilesSize > 1) {
View titleView = Utils.inflateCategoryHeader(inflater, contents);
final TextView titleText = (TextView) titleView.findViewById(android.R.id.title);
titleText.setText(userInfo.isManagedProfile() ? R.string.category_work
: R.string.category_personal);
contents.addView(titleView);
}
for (int i = 0; i < N; i++) {
Account account = accounts[i];