HomeSort by relevance Sort by last modified time
    Searched full:checkboxpref (Results 1 - 5 of 5) sorted by null

  /cts/tests/tests/preference2/src/android/preference2/cts/
PreferenceGroupTest.java 45 CheckBoxPreference checkboxPref = new CheckBoxPreference(mActivity);
46 checkboxPref.setKey("checkbox_preference_group");
47 checkboxPref.setIcon(R.drawable.ic_launcher);
48 checkboxPref.setTitle(R.string.title_checkbox_preference);
49 checkboxPref.setSummary(R.string.summary_checkbox_preference);
50 checkboxPref.setSummaryOn(R.string.summary_on_checkbox_preference);
51 checkboxPref.setSummaryOff(R.string.summary_off_checkbox_preference);
52 checkboxPref.setChecked(true);
53 mPreferenceGroup.addPreference(checkboxPref);
95 CheckBoxPreference checkboxPref = new CheckBoxPreference(mActivity)
    [all...]
CheckBoxPreferenceTest.java 40 CheckBoxPreference checkBoxPref = (CheckBoxPreference) mActivity.findPreference(
42 assertNotNull(checkBoxPref);
46 CheckBoxPreference checkBoxPref = (CheckBoxPreference) mActivity.findPreference(
48 String summary = (String) checkBoxPref.getSummary();
PreferenceFromCodeActivity.java 51 CheckBoxPreference checkboxPref = new CheckBoxPreference(this);
52 checkboxPref.setKey("checkbox_preference");
53 checkboxPref.setIcon(R.drawable.ic_launcher);
54 checkboxPref.setTitle(R.string.title_checkbox_preference);
55 checkboxPref.setSummary(R.string.summary_checkbox_preference);
56 checkboxPref.setSummaryOn(R.string.summary_on_checkbox_preference);
57 checkboxPref.setSummaryOff(R.string.summary_off_checkbox_preference);
58 checkboxPref.setChecked(true);
59 checkboxPref.shouldDisableDependents();
60 prefCat.addPreference(checkboxPref);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
PreferencesFromCode.java 52 CheckBoxPreference checkboxPref = new CheckBoxPreference(this);
53 checkboxPref.setKey("checkbox_preference");
54 checkboxPref.setTitle(R.string.title_checkbox_preference);
55 checkboxPref.setSummary(R.string.summary_checkbox_preference);
56 inlinePrefCat.addPreference(checkboxPref);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutPickerFragment.java 95 CheckBoxPreference checkboxPref = (CheckBoxPreference)preference;
96 KeyboardLayout layout = mPreferenceMap.get(checkboxPref);
98 boolean checked = checkboxPref.isChecked();

Completed in 163 milliseconds