Home
last modified time | relevance | path

Searched refs:radioButton (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/nfc/
DNfcPaymentPreferenceController.java214 holder.radioButton = convertView.findViewById(R.id.button); in getView()
221 holder.radioButton.setOnCheckedChangeListener(null); in getView()
222 holder.radioButton.setChecked(appInfo.isDefault); in getView()
223 holder.radioButton.setContentDescription(appInfo.label); in getView()
224 holder.radioButton.setOnCheckedChangeListener(this); in getView()
225 holder.radioButton.setTag(appInfo); in getView()
226 holder.radioButton.setText(appInfo.label); in getView()
231 public RadioButton radioButton; field in NfcPaymentPreferenceController.NfcPaymentAdapter.ViewHolder
/packages/apps/Settings/src/com/android/settings/nfc/
DNfcPaymentPreferenceController.java214 holder.radioButton = convertView.findViewById(R.id.button); in getView()
221 holder.radioButton.setOnCheckedChangeListener(null); in getView()
222 holder.radioButton.setChecked(appInfo.isDefault); in getView()
223 holder.radioButton.setContentDescription(appInfo.label); in getView()
224 holder.radioButton.setOnCheckedChangeListener(this); in getView()
225 holder.radioButton.setTag(appInfo); in getView()
226 holder.radioButton.setText(appInfo.label); in getView()
231 public RadioButton radioButton; field in NfcPaymentPreferenceController.NfcPaymentAdapter.ViewHolder
/packages/apps/PermissionController/src/com/android/packageinstaller/role/ui/handheld/
DRadioButtonPreference.java84 RadioButton radioButton = (RadioButton) holder.findViewById(R.id.radio_button); in onBindViewHolder() local
85 radioButton.setOnCheckedChangeListener(null); in onBindViewHolder()
86 radioButton.setChecked(mChecked); in onBindViewHolder()
87 radioButton.setOnCheckedChangeListener(mOnCheckedChangeListener); in onBindViewHolder()
/packages/apps/Settings/src/com/android/settings/inputmethod/
DKeyboardLayoutDialogFragment.java282 RadioButton radioButton = in inflateTwoLine() local
286 radioButton.setChecked(checked); in inflateTwoLine()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/inputmethod/
DKeyboardLayoutDialogFragment.java282 RadioButton radioButton = in inflateTwoLine() local
286 radioButton.setChecked(checked); in inflateTwoLine()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactListFilterView.java90 mRadioButton = (RadioButton) findViewById(R.id.radioButton); in bindView()