微信7.0版本之前抢红包插件点击基本上都借助AccessibilityService无障碍的performClick方法点击控件,不过7.0版本的微信的红包控件(view)没有id这一项了,所以performClick就无法使用了,但是抢红包就在此停止了吗?非也,下面给出2种点击方法。
方法一(验证有效)
此方法免root,不过需要Android7.0及以上版本,AccessibilityService有个新的选项,canPerformGestures: 安卓7.0后可通过dispatchGesture实现点击屏幕的操作,如需用此方法需将canPerformGestures设置为true<?xml version="1.0" encoding="utf-8"?>
android:canPerformGestures="true"
android:description="@string/accessibility_service_description" />
模拟点击的方法dispatchGesture@TargetApi(24)
public void click(Point point) {
//只有7.0才可以用
GestureDescription.Builder builder = new GestureDescription.Builder();
Path path = new Path();
path.moveTo((float) point.x, (float) point.y);
path.lineTo((float) point.x, (float) point.