目录

GestureDescription类使用笔记

目录

http://image.catbro.cn/upload_88e168a529af9a66cde8d01ac0341391.png

官方文档:https://developer.android.com/reference/android/accessibilityservice/GestureDescription

#简介:

Accessibility services with the R.styleable.AccessibilityService_canPerformGestures property can dispatch gestures. This class describes those gestures. Gestures are made up of one or more strokes. Gestures are immutable once built and will be dispatched to the specified display.

具有R.styleable.AccessibilityService_canPerformGestures属性的可访问性服务可以分发手势。 该类用于描述这些由一个或多个笔划组成手势。 手势一旦建立便是不可变的,并将被分派到指定的显示display中。

Spatial dimensions throughout are in screen pixels. Time is measured in milliseconds.

整个空间尺寸以屏幕像素为单位。时间以毫秒为单位。


摘要

内部类

说明 备注
GestureDescription.Builder 手势描述生成器
GestureDescription.StrokeDescription 笔触的不变描述,可以作为手势的一部分。

方法

方法 说明 备注
int getDisplayId()|返回发送该手势的display ID,与DisplayManager.getDisplay(int)一起使用。
static long getMaxGestureDuration() 获取手势耗时的上限。
static int getMaxStrokeCount() 获取手势可以包含的笔画数的上限
GestureDescription.StrokeDescription getStroke(int index) 从手势中读取笔画
int getStrokeCount() 获取手势中笔画的数量.