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

  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeEnabler.java 146 final InputMethodSubtypePreference subtypePref = (InputMethodSubtypePreference) pref;
147 subtypePref.setChecked(isChecking);
148 if (!subtypePref.isChecked()) {
196 final Preference subtypePref = new InputMethodSubtypePreference(
198 subtypePreferences.add(subtypePref);
290 final TwoStatePreference subtypePref = (TwoStatePreference)pref;
291 subtypePref.setChecked(false);
295 if (subtypePref.getKey().equals(implicitlyEnabledSubtypePrefKey)) {
296 subtypePref.setChecked(true);
InputMethodAndSubtypeUtil.java 205 final TwoStatePreference subtypePref = (TwoStatePreference) context
208 if (subtypePref == null) {
219 // Checking <code>subtypePref.isEnabled()</code> is insufficient to determine
222 // check <code>subtypePref.isEnabled()</code> so that only manually enabled
224 if (subtypePref.isEnabled() && subtypePref.isChecked()) {
309 final TwoStatePreference subtypePref = (TwoStatePreference) pref;
311 subtypePref.setChecked(isEnabled);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
CustomInputStyleSettingsFragment.java 248 // intent.putExtra("newlyAddedSubtype", subtypePref.getSubtype());
275 final CustomInputStylePreference subtypePref = (CustomInputStylePreference)pref;
277 if (subtypePref.isIncomplete()) continue;
278 subtypes.add(subtypePref.getSubtype());

Completed in 145 milliseconds