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

/packages/apps/Car/libs/car-list/src/com/android/car/list/
H A DCheckBoxLineItem.java29 * Contains logic for a line item represents title text and a checkbox.
38 * @param title The title text displayed with the checkbox
54 viewHolder.checkbox.setChecked(isChecked());
59 * and checkbox
63 public final CheckBox checkbox; field in class:CheckBoxLineItem.CheckboxLineItemViewHolder
73 checkbox = view.findViewById(R.id.checkbox);
H A DPasswordLineItem.java29 * as password input followed by a checkbox to toggle between show/hide password.
48 * a show password checkbox.
51 public final CheckBox checkbox; field in class:PasswordLineItem.ViewHolder
55 checkbox = view.findViewById(R.id.checkbox);
66 viewHolder.checkbox.setChecked(mShowPassword);
67 viewHolder.checkbox.setOnCheckedChangeListener((buttonView, isChecked) -> {
77 throw new IllegalArgumentException("checkbox will automatically set TextType.");
/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.java201 Switch checkbox; field in class:DeviceAdminSettings.ViewHolder
289 h.checkbox = v.findViewById(R.id.checkbox);
303 vh.checkbox.setChecked(isActiveAdmin(item));
309 vh.checkbox.setEnabled(enabled);

Completed in 120 milliseconds