HomeSort by relevance Sort by last modified time
    Searched refs:subtypePref (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
AdditionalSubtypeSettings.java 161 public void onRemovePressed(SubtypePreference subtypePref);
162 public void onSavePressed(SubtypePreference subtypePref);
163 public void onAddPressed(SubtypePreference subtypePref);
425 final SubtypePreference subtypePref = (SubtypePreference)findPreference(
427 mSubtypeEnablerNotificationDialog = createDialog(subtypePref);
448 public void onRemovePressed(final SubtypePreference subtypePref) {
451 group.removePreference(subtypePref);
456 public void onSavePressed(final SubtypePreference subtypePref) {
457 final InputMethodSubtype subtype = subtypePref.getSubtype();
458 if (!subtypePref.hasBeenModified())
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeEnabler.java 302 for (Preference subtypePref: subtypePrefs) {
303 if (subtypePref instanceof CheckBoxPreference
304 && ((CheckBoxPreference)subtypePref).isChecked()) {
317 for (Preference subtypePref: subtypePrefs) {
318 if (subtypePref instanceof CheckBoxPreference) {
322 subtypePref.setEnabled(!autoSelectionEnabled);
324 ((CheckBoxPreference)subtypePref).setChecked(false);
356 for (Preference subtypePref: subtypePrefs) {
357 if (subtypePref instanceof CheckBoxPreference) {
358 CheckBoxPreference cb = (CheckBoxPreference)subtypePref;
    [all...]
InputMethodAndSubtypeUtil.java 188 CheckBoxPreference subtypePref = (CheckBoxPreference) context.findPreference(
191 if (subtypePref == null) continue;
200 if (subtypePref.isChecked()) {

Completed in 78 milliseconds