HomeSort by relevance Sort by last modified time
    Searched defs:mRadioButton (Results 1 - 8 of 8) sorted by null

  /cts/tests/tests/widget/src/android/widget/cts/
RadioButtonTest.java 49 private RadioButton mRadioButton;
59 mRadioButton = (RadioButton) mActivity.findViewById(R.id.radio_button);
96 mActivity.getString(R.string.hello_world), mRadioButton.getText()));
98 mRadioButton.setText("new text");
99 assertTrue(TextUtils.equals("new text", mRadioButton.getText()));
101 mRadioButton.setText(R.string.text_name);
103 mActivity.getString(R.string.text_name), mRadioButton.getText()));
111 mRadioButton.setOnCheckedChangeListener(mockCheckedChangeListener);
114 assertFalse(mRadioButton.isChecked());
117 mRadioButton.setChecked(false)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
RadioButtonPreference.java 41 private RadioButton mRadioButton;
77 mRadioButton = (RadioButton)view.findViewById(R.id.radio_button);
78 mRadioButton.setChecked(mIsSelected);
79 mRadioButton.setOnClickListener(mClickListener);
92 if (mRadioButton != null) {
93 mRadioButton.setChecked(selected);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListFilterView.java 43 private RadioButton mRadioButton;
70 if (mRadioButton != null) {
71 mRadioButton.setChecked(activated);
82 return mRadioButton.isChecked();
90 mRadioButton = (RadioButton) findViewById(R.id.radioButton);
91 mRadioButton.setChecked(isActivated());
  /packages/apps/Settings/src/com/android/settings/tts/
TtsEnginePreference.java 56 private RadioButton mRadioButton;
102 mRadioButton = rb;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
TtsEnginePreference.java 46 private RadioButton mRadioButton;
73 mRadioButton = rb;
79 onRadioButtonClicked(mRadioButton, !mRadioButton.isChecked());
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainActivity.java 388 holder.mRadioButton = (RadioButton) view.findViewById(R.id.cert_item_selected);
408 holder.mRadioButton.setChecked(adapterPosition == adapterCheckedItemPosition);
449 RadioButton mRadioButton;
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 47 private RadioButton mRadioButton;
168 if (!checkable && mRadioButton == null && mCheckBox == null) {
178 if (mRadioButton == null) {
181 compoundButton = mRadioButton;
188 otherCompoundButton = mRadioButton;
205 if (mRadioButton != null) mRadioButton.setVisibility(GONE);
213 if (mRadioButton == null) {
216 compoundButton = mRadioButton;
293 mRadioButton
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
ListMenuItemView.java 54 private RadioButton mRadioButton;
174 if (!checkable && mRadioButton == null && mCheckBox == null) {
184 if (mRadioButton == null) {
187 compoundButton = mRadioButton;
194 otherCompoundButton = mRadioButton;
212 if (mRadioButton != null) {
213 mRadioButton.setVisibility(GONE);
223 if (mRadioButton == null) {
226 compoundButton = mRadioButton;
305 mRadioButton
    [all...]

Completed in 131 milliseconds