在我的应用程序中,我有一个自定义键盘,现在我需要检测,知道我的应用程序的自定义键盘是否在设置中启用。比如Kii keyboard app
答案 0 :(得分:2)
获取InputMethodManager和列表启用的输入法:
InputMethodManager im = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
String list = im.getEnabledInputMethodList().toString();