android – 如何以编程方式更改输入方法?
作者:互联网
我需要根据语言的变化来更改键盘.
我做了一些研究,发现可以使用这些API完成
对于第一个API,我需要一个IBinder令牌,可以通过调用从InputMethodService实例获取
mInputMethodService.getWindow().getWindow().getAttributes().token
或者,如果我有对InputMethodService对象的引用,我可以简单地调用
mInputMethodService.switchInputMethod(id)
更改输入法.
真正的问题是如何获得对InputMethodService对象的引用.
PS:
我不想使用InputMethodManager的showInputMethodPicker()因为我的要求我想改变
它来自我现有的对话框,其中包含一系列语言.
我知道这对于用户应用程序是不可能的,但不确定它是否也不可能用于系统应用程序.
解决方法:
Succeded!
我改变当前IME的唯一方法是通过自定义它.
对于我的resp.问题如果我改变系统语言,我必须将键盘更改为中文
从我的自定义设置应用程序到中文.
下面讨论的方法用于自定义LatinIME应用程序.
每个IME都有一个扩展InputMethodService级的类.在这个类中,我们可以覆盖一个方法
调用onInitializeInterface.每次配置更改时调用此方法,即
当您更改系统区域设置时,将调用它.
在这里,我们可以检查当前是否支持当前选择的Locale
目前的IME与否.如果没有,那么我们可以通过调用方法加载其相应的IME
switchInputMethod(id).
要获取id,我们可以通过inputMethodManager查询并获取可用ID列表
String pinyinId = "";
InputMethodManager inputMethodManager = (InputMethodManager) getApplicationContext()
.getSystemService(INPUT_METHOD_SERVICE);
List<InputMethodInfo> inputMethodInfos = inputMethodManager.getInputMethodList();
for (InputMethodInfo inputMethodInfo : inputMethodInfos) {
if (inputMethodInfo.getId().contains("pinyin")) {
pinyinId = inputMethodInfo.getId();
}
}
获取id后我们可以调用switchInputMethod(pinyinId),它将改变IME.
标签:android-input-method,android 来源: https://codeday.me/bug/20190831/1773290.html