我已经阅读了大部分有关检测软键盘或检测KeyEvent的帖子。我看到了诸如测量视图大小的方法。但是,我的问题是我想检测软键盘是打开还是KeyEvent使用“服务”。是否可以通过服务来实现?或者,是否可以检测到某人正在键入活动?我正在进行研究,我需要在手机上记录一些活动,包括检测活动中的输入。谢谢!
答案 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)中收到该事件。但是,这种方法有两个缺点:
同样,此方法仅适用于某些目的。但它适用于您想要“从服务”而不是从您的活动中检测软键盘的情况。