1.在项目res目录下新建xml文件夹,并在下面新建任意名的xml文件。
例如:res/xml/service_config
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
android:accessibilityEventTypes="typeAllMask"
android:accessibilityFeedbackType="feedbackGeneric"
android:packageNames="com.example"
android:notificationTimeout="100"
android:canRetrieveWindowContent="true"
/>
- packageNames:接收event的包名,多个包名以逗号隔开。如果不设置,默认接收所有应用的event
- notificationTimeout:接收两个event之间的最短间隔时间
- canRetrieveWindowContent:是否获取应用的视图信息,如果要获取应用内的View的信息,则必须设置为true
- accessibilityEventTypes:接收的event类型,如TYPE_VIEW_FOCUSED,TYPE_WINDOW_STATE_CHANGED,TYPE_NOTIFICATION_STATE_CHANGED等等。如接收所有类型,则设置为typeAllMask
- accessibilityFeedbackType:事件反馈类型,包括震动,声音等