Merge "Make preference title align after icon" into sc-dev am: d573f1d19e

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/14609997

Change-Id: I0e796d90f4b7bc4917ff96b212d972b1e87b5f48
This commit is contained in:
TreeHugger Robot
2021-05-21 08:34:21 +00:00
committed by Automerger Merge Worker
6 changed files with 7 additions and 21 deletions

View File

@@ -89,7 +89,7 @@ public class VerifiedLinksPreference extends TwoTargetPreference {
CheckBox checkBox = (CheckBox) view.findViewById(com.android.internal.R.id.checkbox);
if (checkBox != null) {
checkBox.setChecked(true);
checkBox.setVisibility(mShowCheckBox ? View.VISIBLE : View.INVISIBLE);
checkboxContainer.setVisibility(mShowCheckBox ? View.VISIBLE : View.GONE);
}
}
}