确定启用的输入法

发布于 2024-11-30 21:11:10 字数 820 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾忌 2024-12-07 21:11:10

我在另一个 Stack Overflow 问题上找到了答案:

Android:从代码确定活动输入法

下面的代码(更新)就达到了目的:

public boolean isInputMethodEnabled() {
    String id = Settings.Secure.getString(mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);

    ComponentName defaultInputMethod = ComponentName.unflattenFromString(id);

    ComponentName myInputMethod = new ComponentName(mContext, MyInputMethodService.class);

    return myInputMethod.equals(defaultInputMethod);
}

I found my answer on another Stack Overflow question :

Android: Determine active input method from code

The following code (updated) did the trick :

public boolean isInputMethodEnabled() {
    String id = Settings.Secure.getString(mContext.getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);

    ComponentName defaultInputMethod = ComponentName.unflattenFromString(id);

    ComponentName myInputMethod = new ComponentName(mContext, MyInputMethodService.class);

    return myInputMethod.equals(defaultInputMethod);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文