Searched defs:checkbox (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Car/Settings/src/com/android/car/settings/common/
H A DPasswordLineItem.java29 * as password input followed by a checkbox to toggle between show/hide password.
44 public final CheckBox checkbox; field in class:PasswordLineItem.ViewHolder
48 checkbox = view.findViewById(R.id.checkbox);
56 viewHolder.checkbox.setChecked(mShowPassword);
57 viewHolder.checkbox.setOnCheckedChangeListener((buttonView, isChecked) -> {
68 throw new IllegalArgumentException("checkbox will automatically set TextType.");
H A DCheckBoxLineItem.java31 * Contains logic for a line item represents title text and a checkbox.
38 CheckBox checkBox = v.findViewById(R.id.checkbox);
52 viewHolder.checkbox.setChecked(isChecked());
58 public final CheckBox checkbox; field in class:CheckBoxLineItem.CheckboxLineItemViewHolder
63 checkbox = view.findViewById(R.id.checkbox);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
H A DGalleryGridItemView.java32 /** Shows an item in the gallery picker grid view. Hosts an FileImageView with a checkbox. */
38 private View checkbox; field in class:GalleryGridItemView
51 checkbox = findViewById(R.id.checkbox);
55 checkbox.setClipToOutline(true);
73 checkbox.setVisibility(VISIBLE);
77 checkbox.setVisibility(GONE);
/packages/apps/Settings/src/com/android/settings/
H A DDeviceAdminSettings.java204 CheckBox checkbox; field in class:DeviceAdminSettings.ViewHolder
292 h.checkbox = (CheckBox) v.findViewById(R.id.checkbox);
306 vh.checkbox.setChecked(isActiveAdmin(item));
312 vh.checkbox.setEnabled(enabled);

Completed in 166 milliseconds