Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/tether/
DWifiHotspotSpeedSettingsTest.java69 SelectorWithWidgetPreference mRadioButton; field in WifiHotspotSpeedSettingsTest
97 mSettings.mSpeedPreferenceMap.put(SPEED_2GHZ, mRadioButton); in onSpeedInfoMapDataChanged_checkedSpeed2g_checkedToRadioButton2g()
109 mSettings.mSpeedPreferenceMap.put(SPEED_2GHZ, mRadioButton); in onSpeedInfoMapDataChanged_uncheckedSpeed2g_uncheckedToRadioButton2g()
121 mSettings.mSpeedPreferenceMap.put(SPEED_5GHZ, mRadioButton); in onSpeedInfoMapDataChanged_checkedSpeed5g_checkedToRadioButton5g()
133 mSettings.mSpeedPreferenceMap.put(SPEED_5GHZ, mRadioButton); in onSpeedInfoMapDataChanged_uncheckedSpeed5g_uncheckedToRadioButton5g()
145 mSettings.mSpeedPreferenceMap.put(SPEED_2GHZ_5GHZ, mRadioButton); in onSpeedInfoMapDataChanged_checkedSpeed2g5g_checkedToRadioButton2g5g()
157 mSettings.mSpeedPreferenceMap.put(SPEED_2GHZ_5GHZ, mRadioButton); in onSpeedInfoMapDataChanged_uncheckedSpeed2g5g_uncheckedToRadioButton2g5g()
169 mSettings.mSpeedPreferenceMap.put(SPEED_6GHZ, mRadioButton); in onSpeedInfoMapDataChanged_checkedSpeed6g_checkedToRadioButton6g()
181 mSettings.mSpeedPreferenceMap.put(SPEED_6GHZ, mRadioButton); in onSpeedInfoMapDataChanged_uncheckedSpeed6g_uncheckedToRadioButton6g()
194 mSettings.mSpeedPreferenceMap.put(SPEED_6GHZ, mRadioButton); in onSpeedInfoMapDataChanged_setVisibleFalse_setVisibleOnly()
[all …]
/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/Settings/src/com/android/settings/network/apn/
DApnPreference.java49 private RadioButton mRadioButton; field in ApnPreference
73 mRadioButton = rb; in onBindViewHolder()
95 if (mRadioButton != null) { in setIsChecked()
97 mRadioButton.setChecked(mIsChecked); in setIsChecked()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DTtsEnginePreference.java50 private RadioButton mRadioButton; field in TtsEnginePreference
77 mRadioButton = rb; in onBindViewHolder()
83 onRadioButtonClicked(mRadioButton, !mRadioButton.isChecked()); in onClick()
/packages/apps/TvSystemUI/src/com/android/systemui/tv/media/
DTvMediaOutputAdapter.java218 final RadioButton mRadioButton; field in TvMediaOutputAdapter.DeviceViewHolder
228 mRadioButton = itemView.requireViewById(R.id.media_dialog_radio_button); in DeviceViewHolder()
259 mRadioButton.setVisibility(mediaDevice.isConnected() ? View.VISIBLE : View.GONE); in onBind()
260 mRadioButton.setChecked(isCurrentlyConnected(mediaDevice)); in onBind()
390 mRadioButton.setVisibility(View.GONE); in onBindNewDevice()
/packages/services/DeviceAsWebcam/impl/src/com/android/deviceaswebcam/view/
DCameraPickerDialog.kt231 holder.mRadioButton?.isChecked = mViewListItems[position].selected in <lambda>()
294 val mRadioButton: RadioButton? = mView.findViewById(R.id.radio_button) in <lambda>() constant in com.android.deviceaswebcam.view.CameraPickerDialog.CameraPickerListAdapter.CameraPickerViewHolder
318 mRadioButton!!.isChecked = item.selected in <lambda>()
/packages/apps/KeyChain/src/com/android/keychain/
DKeyChainActivity.java616 holder.mRadioButton = (RadioButton) view.findViewById(R.id.cert_item_selected); in getView()
636 holder.mRadioButton.setChecked(adapterPosition == adapterCheckedItemPosition); in getView()
675 RadioButton mRadioButton; field in KeyChainActivity.ViewHolder