使用服务检测打开的软键盘/ KeyEvent

时间:2013-06-14 00:17:24

标签: android service android-softkeyboard keyevent

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

1 个答案:

答案 0 :(得分:5)

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

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

public static final 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. 用户必须在[设置] - &gt;中启用您的辅助功能服务[辅助功能] - &gt; [服务]。
  3. 同样,此方法仅适用于某些目的。但它适用于您想要“从服务”而不是从您的活动中检测软键盘的情况。