确定启用的输入法
在 Android 上,我想以编程方式检查应用程序提供的 InputMethod 是否是当前激活的输入法。
目前,我使用一个技巧:检测我的InputMethodService是否已启动。
public boolean isInputMethodEnabled() {
ActivityManager activityManager = (ActivityManager).getSystemService(ACTIVITY_SERVICE);
List<RunningServiceInfo> servicesInfo = activityManager.getRunningServices(Integer.MAX_VALUE);
for (RunningServiceInfo serviceInfo : servicesInfo) {
if (MyInputMethodService.class.getName().equals(serviceInfo.service.getClassName())) {
return true;
}
}
return false;
}
一般来说,这工作得很好,但当应用程序更新时会失败:我的输入法仍然被选中,但服务尚未启动。该服务将在第一次需要键盘时启动,在此之前 isInputMethodEnabled() 将返回 false。
所以我的问题是:您是否知道另一种方法来检查我的输入法是否被选择,或者您是否知道一种在更新后重新启动输入法服务而不必显示文本视图的方法?
On Android, I want to check programmatically if the InputMethod provided by my application is the current activated input method, or not.
Currently, I use a trick : detect whether my InputMethodService is started or not.
public boolean isInputMethodEnabled() {
ActivityManager activityManager = (ActivityManager).getSystemService(ACTIVITY_SERVICE);
List<RunningServiceInfo> servicesInfo = activityManager.getRunningServices(Integer.MAX_VALUE);
for (RunningServiceInfo serviceInfo : servicesInfo) {
if (MyInputMethodService.class.getName().equals(serviceInfo.service.getClassName())) {
return true;
}
}
return false;
}
This works well in general, but fails when the app is updated : my input method is still selected, but the service is not started yet. The service will be started when a keyboard is required for the first time, and until then isInputMethodEnabled() will return false.
So my question is : do you know another way to check if my input method is selected, or do you know a way to restart the input method service after an update, without having to show a textview ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在另一个 Stack Overflow 问题上找到了答案:
Android:从代码确定活动输入法
下面的代码(更新)就达到了目的:
I found my answer on another Stack Overflow question :
Android: Determine active input method from code
The following code (updated) did the trick :