Android get available input languages
问题 I'm trying to get the available input devices on Android, in order to do that I'm using the InputMethodManager and using the API of getEnabledInputMethodList() as follows: InputMethodManager inputMgr = (InputMethodManager) mContext.getSystemService(Context.INPUT_METHOD_SERVICE); List<InputMethodInfo> inputMethodList = inputMgr.getEnabledInputMethodList(); for (InputMethodInfo method : inputMethodList) { List<InputMethodSubtype> subMethods = inputMgr.getEnabledInputMethodSubtypeList(method,