如何确定Android中的当前IME?

jkh*_*uw1 15 keyboard android ime android-input-method

我有一个应用程序,我想警告用户,如果他们没有使用默认的Android软键盘.(即他们使用Swype或其他东西).

如何查看当前选择的输入法?

小智 26

您可以获得默认IME,使用:

Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
Run Code Online (Sandbox Code Playgroud)


Com*_*are 5

InputMethodManagergetEnabledInputMethodList().你得到了一个InputMethodManager来自getSystemService()你的Activity.