我需要根据语言的变化更改键盘。
我做了一些研究,发现可以使用这些API
完成
- InputMethodManager setInputMethod(android.os.IBinder,java.lang.String)
- InputMethodService switchInputMethod(java.lang.String)
醇>
对于第一个API,我需要 IBinder令牌,可以通过调用
从 InputMethodService 实例获取mInputMethodService.getWindow()。getWindow()。的getAttributes()。令牌
或者如果我有 InputMethodService 对象的引用,我可以简单地调用
mInputMethodService.switchInputMethod(ID)
更改输入法。
真正的问题是如何获取对InputMethodService对象的引用。
PS: 我不想使用InputMethodManager的showInputMethodPicker()因为我的要求我想改变 它来自我现有的对话框,其中包含一系列语言。
我知道这对用户应用程序是不可能的,但不确定它是否也不适用于系统应用程序。
答案 0 :(得分:5)
<强> Succeded !!! 强>
我改变当前IME的唯一方法是通过自定义它。
我的回复。问题如果我改变系统语言,我必须将键盘更改为中文 从我的自定义设置应用程序到中文。
下面讨论的方法用于自定义 LatinIME 应用。
每个IME都有一个扩展InputMethodService类的类。在这个类中,我们可以覆盖一个方法 叫onInitializeInterface。每次配置更改时都会调用此方法,即 当您更改系统区域设置时,将调用它。
在这里,我们可以检查当前是否支持当前所选的区域设置 目前的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。
答案 1 :(得分:0)
这是一个古老的问题,但我是在2019年从Google定向到这里的。 我遇到了同样的问题,这是我的解决方案:
注意:您需要将您的应用安装为系统应用,或者使用平台密钥签名。
在AndroidManifest.xml中添加写安全设置权限:
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
在适当的地方使用InputMethodService switchInputMethod(String inputMethodId)。示例:switchInputMethod("com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME");