- function 触控_无障碍点击(x,y,按压时间)
- local gesture = Gesture:new()
- local path = Path:new()
- path:setStartTime(1)
- path:setDurTime(按压时间)
- path:addPoint(x,y)
- gesture:addPath(path)
- gesture:dispatch()
- end
- function 触控_无障碍滑动(x1,y1,x2,y2,滑动时间)
- local gesture = Gesture:new()
- local path = Path:new()
- path:setStartTime(1)
- path:setDurTime(滑动时间)
- path:addPoint(x1,y1)
- path:addPoint(x2,y2)
- gesture:addPath(path)
- gesture:dispatch()
- end
复制代码 |