Home | History | Annotate | Download | only in inputmethod

Lines Matching refs:subtypes

607      * Returns a list of enabled input method subtypes for the specified input method info.
608 * @param imi An input method info whose subtypes list will be returned.
610 * selected subtypes. If an input method info doesn't have enabled subtypes, the framework
611 * will implicitly enable subtypes according to the current system language.
1754 * Show the settings for enabling subtypes of the specified input method.
1755 * @param imiId An input method, whose subtypes settings will be shown. If imiId is null,
1756 * subtypes of all input methods will be shown.
1769 * Returns the current input method subtype. This subtype is one of the subtypes in
1802 * Returns a map of all shortcut input method info and their subtypes.
1812 ArrayList<InputMethodSubtype> subtypes = null;
1822 subtypes = new ArrayList<InputMethodSubtype>();
1823 ret.put((InputMethodInfo)o, subtypes);
1824 } else if (subtypes != null && o instanceof InputMethodSubtype) {
1825 subtypes.add((InputMethodSubtype)o);
1838 * any subtypes, the framework will simply switch to the last input method with no subtype
1878 * Set additional input method subtypes. Only a process which shares the same uid with the IME
1879 * can add additional input method subtypes to the IME.
1881 * For example, enabled subtypes are remembered by the framework even after they are removed
1882 * by using this method. If you re-add the same subtypes again,
1888 * @param imiId Id of InputMethodInfo which additional input method subtypes will be added to.
1889 * @param subtypes subtypes will be added as additional subtypes of the current input method.
1891 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
1894 mService.setAdditionalInputMethodSubtypes(imiId, subtypes);