OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:checkBoxPreference
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/nfc/
NfcEnabler.java
24
import android.preference.
CheckBoxPreference
;
37
private final
CheckBoxPreference
mCheckbox;
53
public NfcEnabler(Context context,
CheckBoxPreference
checkBoxPreference
,
56
mCheckbox =
checkBoxPreference
;
/packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java
25
import android.preference.
CheckBoxPreference
;
193
// pref is instance of
CheckBoxPreference
in the Configure input method screen.
194
final boolean isImeChecked = (pref instanceof
CheckBoxPreference
) ?
195
((
CheckBoxPreference
) pref).isChecked()
212
CheckBoxPreference
subtypePref = (
CheckBoxPreference
) context.findPreference(
310
if (pref != null && pref instanceof
CheckBoxPreference
) {
311
CheckBoxPreference
checkBoxPreference
= (
CheckBoxPreference
) pref
[
all
...]
Completed in 32 milliseconds