3

我已经阅读了这里关于检测软键盘或检测 KeyEvent 的大部分帖子。我看到了测量视图大小等方法。但是,我的案例的问题是我想检测软键盘是否打开或使用“服务”的 KeyEvent。是否可以通过服务来实现?或者,是否有可能检测到有人正在输入活动?我正在进行一项研究,我需要在手机上记录一些活动,其中包括检测输入活动。谢谢!

4

2 回答 2

5

我找到了一种“有点”解决这个问题的棘手方法。但是,如果您有这种能力,这需要您的用户为您做一些事情:) 所以显然这并不能解决您的所有问题。

我的棘手方法是使用AccessibilityEvent。您可以指定要收听的事件。与窗口大小相关的事件之一是 TYPE_WINDOW_CONTENT_CHANGED(见下文)

公共静态最终 int TYPE_WINDOW_CONTENT_CHANGED

Added in API level 14
Represents the event of changing the content of a window and more specifically the sub-tree rooted at the event's source.

Constant Value: 2048 (0x00000800)

只要您的应用程序的无障碍服务启用,您就会收到此事件。

要收听此事件,您必须启动自己的 AccessibilityService。请参阅this以了解如何构建一个。然后,您可以指定要接收的可访问性事件。您可以在 xml 文件中指定它们:

<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
    android:packageNames="MypackageName"
    android:accessibilityEventTypes="typeWindowStateChanged"
    android:accessibilityFeedbackType="feedbackSpoken"
    android:notificationTimeout="100"
/>

或在 onServiceConnected 方法中:

protected void onServiceConnected() {   
    AccessibilityServiceInfo info = new AccessibilityServiceInfo();    
    info.eventTypes = AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
}

然后您将在 onAccessibilityEvent(event) 方法中收到该事件。但是,这种方法有两个缺点:

  1. 每当窗口状态发生变化时,就会触发该事件。
  2. 用户必须在 [设置] -> [辅助功能] -> [服务] 中启用您的辅助功能服务。

同样,此方法仅适用于某些目的。但它适用于您想要“从服务”而不是从您的活动中检测软键盘的情况。

于 2013-06-14T22:10:38.560 回答
1

用这个:

boolean isKeyboardOpened() {
    List<AccessibilityWindowInfo> windowInfoList = getWindows();
    for(int k = 0; k < windowInfoList.size(); k++) {
        if(windowInfoList.get(k).getType() == AccessibilityWindowInfo.TYPE_INPUT_METHOD) {
            Log.i(TAG, "keyboard is opened!");
            return true;
        }
    }
    return false;
}

也使用

android:accessibilityFlags="flagRetrieveInteractiveWindows"
于 2022-01-22T11:30:00.160 回答