Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DRadioButtonPreference.java41 private RadioButton mRadioButton; field in RadioButtonPreference
77 mRadioButton = (RadioButton)view.findViewById(R.id.radio_button); in onBindView()
78 mRadioButton.setChecked(mIsSelected); in onBindView()
79 mRadioButton.setOnClickListener(mClickListener); in onBindView()
92 if (mRadioButton != null) { in setSelected()
93 mRadioButton.setChecked(selected); in setSelected()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactListFilterView.java43 private RadioButton mRadioButton; field in ContactListFilterView
70 if (mRadioButton != null) { in setActivated()
71 mRadioButton.setChecked(activated); in setActivated()
82 return mRadioButton.isChecked(); in isChecked()
90 mRadioButton = (RadioButton) findViewById(R.id.radioButton); in bindView()
91 mRadioButton.setChecked(isActivated()); in bindView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DTtsEnginePreference.java46 private RadioButton mRadioButton; field in TtsEnginePreference
73 mRadioButton = rb; in onBindViewHolder()
79 onRadioButtonClicked(mRadioButton, !mRadioButton.isChecked()); in onClick()
/packages/apps/Settings/src/com/android/settings/tts/
DTtsEnginePreference.java56 private RadioButton mRadioButton; field in TtsEnginePreference
102 mRadioButton = rb; in onBindViewHolder()
/packages/apps/KeyChain/src/com/android/keychain/
DKeyChainActivity.java350 holder.mRadioButton = (RadioButton) view.findViewById(R.id.cert_item_selected); in getView()
370 holder.mRadioButton.setChecked(adapterPosition == adapterCheckedItemPosition); in getView()
411 RadioButton mRadioButton; field in KeyChainActivity.ViewHolder