gpt4 book ai didi

android - 使用服务检测正在打开的软键盘/KeyEvent

转载 作者:太空宇宙 更新时间:2023-11-03 12:57:44 27 4
gpt4 key购买 nike

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

最佳答案

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

我的技巧是使用 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学习如何 build 一个。然后您可以指定要接收的辅助功能事件。您可以在 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. 用户必须在[设置] -> [辅助功能] -> [服务]中启用您的辅助功能服务。

同样,此方法仅适用于特定目的。但它适用于您想要“从服务”而非您的 Activity 中检测软键盘的情况。

关于android - 使用服务检测正在打开的软键盘/KeyEvent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17099285/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com