如何获得用户键盘语言

时间:2015-10-28 06:04:06

标签: android keyboard android-input-method android-inputtype

我正在编写一个使用编辑文本的应用程序。我想知道在oncreate方法或键盘输入类型更改时用户输入的语言是什么。有没有办法设置一个监听器来获得这种改变?我找到的所有答案都是关于语言环境而不是输入语言。我不想处理语言环境,语言环境在应用程序中没有效果,输入语言也没有。 我使用了这些代码。

private void printInputLanguages() {

    List<InputMethodInfo> ims = imm.getEnabledInputMethodList();
    for (InputMethodInfo method : ims) {
        List<InputMethodSubtype> submethods = imm
                .getEnabledInputMethodSubtypeList(method, true);
        for (InputMethodSubtype submethod : submethods) {
            if (submethod.getMode().equals("keyboard")) {
                String currentLocale =

                submethod.getLocale();
                tv.setText(currentLocale);
                Log.i("sara", "Available input method locale: "
                        + currentLocale);
            }
        }
    }

}

这个代码,但没有一个没有帮助。

    InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
    InputMethodSubtype ims = imm.getCurrentInputMethodSubtype();
    String localeString = ims.getLocale();
    Locale locale = new Locale(localeString);
    String currentLanguage = locale.getDisplayLanguage();

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

没有办法做到这一点。键盘的输入语言不会报告给操作系统 - 实际上Android没有输入语言的概念。这是第三方键盘制造商创造的想法。所以键盘可以输入任何语言,操作系统也不知道。