Home
last modified time | relevance | path

Searched refs:compoundButton (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuItemView.java174 final CompoundButton compoundButton; in setCheckable() local
181 compoundButton = mRadioButton; in setCheckable()
187 compoundButton = mCheckBox; in setCheckable()
192 compoundButton.setChecked(mItemData.isChecked()); in setCheckable()
195 if (compoundButton.getVisibility() != newVisibility) { in setCheckable()
196 compoundButton.setVisibility(newVisibility); in setCheckable()
210 CompoundButton compoundButton; in setChecked() local
216 compoundButton = mRadioButton; in setChecked()
221 compoundButton = mCheckBox; in setChecked()
224 compoundButton.setChecked(checked); in setChecked()
/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/recyclerview/
H A DCarUiListItemAdapter.java387 @NonNull CompoundButton compoundButton, in bindCompoundButton() argument
389 compoundButton.setVisibility(View.VISIBLE); in bindCompoundButton()
390 compoundButton.setOnCheckedChangeListener(null); in bindCompoundButton()
391 compoundButton.setChecked(item.isChecked()); in bindCompoundButton()
392 compoundButton.setOnCheckedChangeListener( in bindCompoundButton()
399 compoundButton.toggle(); in bindCompoundButton()
/aosp12/packages/apps/Car/libs/car-ui-lib/referencedesign/plugin/src/main/java/com/chassis/car/ui/plugin/recyclerview/
H A DListItemAdapter.java442 @NonNull CompoundButton compoundButton, in bindCompoundButton() argument
444 compoundButton.setVisibility(View.VISIBLE); in bindCompoundButton()
445 compoundButton.setOnCheckedChangeListener(null); in bindCompoundButton()
446 compoundButton.setChecked(item.isChecked()); in bindCompoundButton()
447 compoundButton.setOnCheckedChangeListener( in bindCompoundButton()
454 compoundButton.toggle(); in bindCompoundButton()
/aosp12/packages/apps/Settings/src/com/android/settings/nfc/
H A DNfcPaymentPreferenceController.java235 public void onCheckedChanged(CompoundButton compoundButton, boolean b) { in onCheckedChanged() argument
236 PaymentAppInfo appInfo = (PaymentAppInfo) compoundButton.getTag(); in onCheckedChanged()
/aosp12/packages/apps/Settings/src/com/android/settings/vpn2/
H A DConfigDialog.java303 public void onCheckedChanged(CompoundButton compoundButton, boolean b) { in onCheckedChanged() argument
304 if (compoundButton == mAlwaysOnVpn) { in onCheckedChanged()