服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android中微信抢红包插件原理解析及开发思路

Android中微信抢红包插件原理解析及开发思路

2021-05-28 14:18尼古拉斯_赵四 Android

本文给大家介绍Android中微信抢红包插件原理解析及开发思路,对微信抢红包插件原理相关知识感兴趣的朋友一起学习吧

一、前言

自从去年中微信添加抢红包的功能,微信的电商之旅算是正式开始正式火爆起来。但是作为android开发者来说,我们在抢红包的同时意识到了很多问题,就是手动去抢红包的速度慢了,当然这些有很多原因导致了。或许是网络的原因,而且这个也是最大的原因。但是其他的不可忽略的因素也是要考虑到进去的,比如在手机充电锁屏的时候,我们并不知道有人已经开始发红包了,那么这时候也是让我们丧失了一大批红包的原因。那么关于网络的问题,我们开发者可能用相关技术无法解决(当然在google和facebook看来的话,他们的理想是能够在任何地方都能连接互联网,当然在偏远的农村也是,不过我们期待他们有一天能够普及开来。到时候才是真正的互联网)。扯得有点远了。我们回归到正题,今天我们来看看使用技术来解决其他非网络问题。在充电锁屏的时候也可以自动帮我们抢红包。而且你要知道,机器抢红包的准确率是100%的,这个也许就是人和机器的区别。那么保证抢得准确率是100%的话,那就依赖于我们高效准确的算法实现了。下面就来看看原理实现。

当去年我看到抢红包那么火爆的时候,当时作为一个开发者心里是多么渴望开发一个插件出来,可是当时我们能想到的就是使用:

adb shell monkey

命令去模拟点击屏幕,但是那种方式有一个问题就是是无头绪的盲目点击,所以几乎会出现误点,点击成功率极其低下。所以当时就没有想到其他方法了,因为最近做了有关辅助功能相关的工作的时候,那么就发现这个功能可以用于抢红包。

其实现在我们可以去各大市场搜索一下看到,有很多抢红包的插件了。当然我们并不是用于商业化,这里只是来解析一下原理。我们会发现那些插件都有一个共同的特点是:第一步都是引导用户去开启辅助功能。

二、原理解析

关于辅助功能(accessibilityservice),如果又不了解的同学可以去google一下,这个功能其实很有用的,但是他的出现的出发点是给那些肢体上有障碍的人使用的,比如手指不健全的用户,怎么才能滑动屏幕,然后打开一个应用呢?那么辅助功能就是干这些事,他的功能其实就是可以概括两句话:

第一、寻找到我们想要的view节点

第二、然后模拟点击,实现特定功能

我们知道android中的view体系是一个树形结构,那么每一个view就是一个节点。所以我们可以查找到指定的节点,那么我们该如何查找到我们想要的节点呢?这里我们先看一下辅助功能(accessibilityservice)的用法

第一步、我们需要集成accessibilityservice类

我们需要自定一个service然后继承accessibilityservice,当然还需要在androidmanifest.xml中声明这个服务:

Android中微信抢红包插件原理解析及开发思路

第二步、声明权限和配置

这个服务需要注明一个权限:

?
1
android:permission="android.permission.bind_accessibility_service"

当然还要一个meta-data的声明,这个声明是对这个accessibilityservice的配置。我们看一下配置文件内容:

?
1
2
3
4
5
6
7
8
9
<?xml version="1.0" encoding="utf-8"?>
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
android:accessibilityeventtypes="typenotificationstatechanged|typewindowstatechanged"
android:accessibilityfeedbacktype="feedbackgeneric"
android:accessibilityflags="flagdefault"
android:canretrievewindowcontent="true"
android:description="@string/desc"
android:notificationtimeout="100"
android:packagenames="com.tencent.mm" />

这里我们看到有很多选项,我们看一下常用的几个属性:

1、android:accessibilityeventtypes="typeallmask"
看属性名也差不多可以明白,这个是用来设置响应事件的类型,typeallmask当然就是响应所有类型的事件了。当然还有单击、长按、滑动等。

2、android:accessibilityfeedbacktype="feedbackspoken"

设置回馈给用户的方式,有语音播出和振动。可以配置一些tts引擎,让它实现发音。

3、android:notificationtimeout="100"

响应时间的设置就不用多说了

4、android:packagenames="com.example.android.apis"

可以指定响应某个应用的事件,这里因为要响应所有应用的事件,所以不填,默认就是响应所有应用的事件。比如我们写一个微信抢红包的辅助程序,就可以在这里填写微信的包名,便可以监听微信产生的事件了。

注意:

1、我们这些配置信息除了在xml中定义,同样也可以在代码中定义,我们一般都是在onserviceconnected()方法里进行

?
1
2
3
4
5
6
7
8
9
10
11
@override
protected void onserviceconnected() {
accessibilityserviceinfo info = getserviceinfo();
info.eventtypes = accessibilityevent.types_all_mask;
info.feedbacktype = accessibilityserviceinfo.feedback_spoken;
info.notificationtimeout = 100;
setserviceinfo(info);
info.packagenames = new string[]{"xxx.xxx.xxx", "yyy.yyy.yyy","...."};
setserviceinfo(info);
super.onserviceconnected();
}

2、这里我们一般都会在这里写上我们需要监听的应用的包名,但是有时候我们需要监听多个应用,那么这时候我们该怎么办呢?

这时候我们可以这么做:

第一种:我们在代码中注册多个应用的包名,从而可以监听多个应用

?
1
2
3
4
5
6
7
8
@override
protected void onserviceconnected() {
accessibilityserviceinfo info = getserviceinfo();
//这里可以设置多个包名,监听多个应用
info.packagenames = new string[]{"xxx.xxx.xxx", "yyy.yyy.yyy","...."};
setserviceinfo(info);
super.onserviceconnected();
}

第二种:我们在onaccessibilityevent事件监听的方法中做包名的过滤(这种方式最常用)

?
1
2
3
4
5
6
7
8
@override
public void onaccessibilityevent(accessibilityevent event) {
string pkgname = event.getpackagename().tostring();
if("xxx.xxx.xxx".equals(pkgname)){
}else if("yyy.yyy.yyy".equals(pkgname)){
}else if("....".equals(pkgname)){
}
}

第三步、在onaccessibilityevent方法中监听指定的事件

比如我们需要监听有通知栏消息的事件:

?
1
2
3
4
5
6
7
8
@override
public void onaccessibilityevent(accessibilityevent event) {
int eventtype = event.geteventtype();
switch (eventtype) {
case accessibilityevent.type_notification_state_changed:
//.......
}
}

这个事件类型很多的,我们可以查看accessibilityevent类的源码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@deprecated
public static final int max_text_length = 500;
/**
* represents the event of clicking on a {@link android.view.view} like
* {@link android.widget.button}, {@link android.widget.compoundbutton}, etc.
*/
public static final int type_view_clicked = 0x00000001;
/**
* represents the event of long clicking on a {@link android.view.view} like
* {@link android.widget.button}, {@link android.widget.compoundbutton}, etc.
*/
public static final int type_view_long_clicked = 0x00000002;
/**
* represents the event of selecting an item usually in the context of an
* {@link android.widget.adapterview}.
*/
public static final int type_view_selected = 0x00000004;
/**
* represents the event of setting input focus of a {@link android.view.view}.
*/
public static final int type_view_focused = 0x00000008;
/**
* represents the event of changing the text of an {@link android.widget.edittext}.
*/
public static final int type_view_text_changed = 0x00000010;
 
/**
* represents the event of opening a {@link android.widget.popupwindow},
* {@link android.view.menu}, {@link android.app.dialog}, etc.
*/
public static final int type_window_state_changed = 0x00000020;
/**
* represents the event showing a {@link android.app.notification}.
*/
public static final int type_notification_state_changed = 0x00000040;
 
/**
* represents the event of a hover enter over a {@link android.view.view}.
*/
public static final int type_view_hover_enter = 0x00000080;
/**
* represents the event of a hover exit over a {@link android.view.view}.
*/
public static final int type_view_hover_exit = 0x00000100;
/**
* represents the event of starting a touch exploration gesture.
*/
public static final int type_touch_exploration_gesture_start = 0x00000200;
 
/**
* represents the event of ending a touch exploration gesture.
*/
public static final int type_touch_exploration_gesture_end = 0x00000400;
/**
* represents the event of changing the content of a window and more
* specifically the sub-tree rooted at the event's source.
*/
public static final int type_window_content_changed = 0x00000800;
 
/**
* represents the event of scrolling a view.
*/
public static final int type_view_scrolled = 0x00001000;
/**
* represents the event of changing the selection in an {@link android.widget.edittext}.
*/
public static final int type_view_text_selection_changed = 0x00002000;
 
/**
* represents the event of an application making an announcement.
*/
public static final int type_announcement = 0x00004000;
 
/**
* represents the event of gaining accessibility focus.
*/
public static final int type_view_accessibility_focused = 0x00008000;
/**
* represents the event of clearing accessibility focus.
*/
public static final int type_view_accessibility_focus_cleared = 0x00010000;
 
/**
* represents the event of traversing the text of a view at a given movement granularity.
*/
public static final int type_view_text_traversed_at_movement_granularity = 0x00020000;
/**
* represents the event of beginning gesture detection.
*/
public static final int type_gesture_detection_start = 0x00040000;
/**
* represents the event of ending gesture detection.
*/
public static final int type_gesture_detection_end = 0x00080000;
/**
* represents the event of the user starting to touch the screen.
*/
public static final int type_touch_interaction_start = 0x00100000;
/**
* represents the event of the user ending to touch the screen.
*/
public static final int type_touch_interaction_end = 0x00200000;
/**
* change type for {@link #type_window_content_changed} event:
* the type of change is not defined.
*/
public static final int content_change_type_undefined = 0x00000000;
 
/**
* change type for {@link #type_window_content_changed} event:
* a node in the subtree rooted at the source node was added or removed.
*/
public static final int content_change_type_subtree = 0x00000001;
 
/**
* change type for {@link #type_window_content_changed} event:
* the node's text changed.
*/
public static final int content_change_type_text = 0x00000002;
/**
* change type for {@link #type_window_content_changed} event:
* the node's content description changed.
*/
public static final int content_change_type_content_description = 0x00000004;

这里有很多事件,这些事件我们通过名字就可以看出来有很多我们可能都知道,比如当窗口发生变化的时候,当某个view被点击了,被滚动了等消息都是可以知道的。那么我们有了这些事件我们就可以做我们的事情了,因为我们知道事件触发了。

第四步、查找到我们想要处理的节点view

这里系统提供了两个方法让我们来进行查找想要的节点view

第一种是通过节点view的text内容来查找

findaccessibilitynodeinfosbytext("查找内容")

这种方式查找,就是像textview,button等view有文本内容的,可以使用这种方式快速的找到。

第二种是通过节点view在xml布局中的id名称

findaccessibilitynodeinfosbyviewid("@id/xxx")

这个一般很难知道,但是我们在查找系统控件的时候还是可以做的,因为系统的控件的id是可以知道的,而且是统一的。
(关于这两个方法我们在写网页爬虫程序的时候可能知道,在html中通过tag/name/id等信息可以找到一个节点,原理都类似)

第五步、模拟点击指定事件

我们找到我们想要的view节点,调用方法模拟事件:

performaction(accessibilitynodeinfo.action_click)

调用这个方法即可,当然这里的参数就是指定事件的名称,这个和accessibilityevent中监听的那些事件是一一对应的,这里是模拟点击事件,我们当然可以模拟view的滚动事件,长按事件等。

三、实战案例:微信抢红包插件

上面我们就介绍了一个辅助功能开发的具体步骤,那么下面就通过一个简单的例子,来实战一下

例子:微信自动抢红包插件

首先我们来看一下微信抢红包的流程:

第一步、我们在通知栏会接收到一个微信红包的消息

我们监听通知栏事件:

accessibilityevent.type_notification_state_changed

然后查看通知栏的消息中是否有:[微信红包] 的文本内容

是的话,就走进入第二步

第二步、我们模拟打开通知栏

打开微信如下图:

Android中微信抢红包插件原理解析及开发思路

我们查找包含有:领取红包 的文本内容的节点view,然后模拟点击,进入第三步:

第三步、我们点击领取红包

'如下图:

这里我们在查找包含有:拆红包 的文本内容的节点view,然后模拟点击

Android中微信抢红包插件原理解析及开发思路

下面我们来看一下代码中的具体实现:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package krelve.demo.rob;
import java.util.list;
import android.accessibilityservice.accessibilityservice;
import android.accessibilityservice.accessibilityserviceinfo;
import android.annotation.suppresslint;
import android.app.notification;
import android.app.pendingintent;
import android.app.pendingintent.canceledexception;
import android.util.log;
import android.view.accessibility.accessibilityevent;
import android.view.accessibility.accessibilitynodeinfo;
public class robmoney extends accessibilityservice {
@override
public void onaccessibilityevent(accessibilityevent event) {
int eventtype = event.geteventtype();
switch (eventtype) {
//第一步:监听通知栏消息
case accessibilityevent.type_notification_state_changed:
list<charsequence> texts = event.gettext();
if (!texts.isempty()) {
for (charsequence text : texts) {
string content = text.tostring();
log.i("demo", "text:"+content);
if (content.contains("[微信红包]")) {
//模拟打开通知栏消息
if (event.getparcelabledata() != null
&&
event.getparcelabledata() instanceof notification) {
notification notification = (notification) event.getparcelabledata();
pendingintent pendingintent = notification.contentintent;
try {
pendingintent.send();
} catch (canceledexception e) {
e.printstacktrace();
}
}
}
}
}
break;
//第二步:监听是否进入微信红包消息界面
case accessibilityevent.type_window_state_changed:
string classname = event.getclassname().tostring();
if (classname.equals("com.tencent.mm.ui.launcherui")) {
//开始抢红包
getpacket();
} else if (classname.equals("com.tencent.mm.plugin.luckymoney.ui.luckymoneyreceiveui")) {
//开始打开红包
openpacket();
}
break;
}
}
/**
* 查找到
*/
@suppresslint("newapi")
private void openpacket() {
accessibilitynodeinfo nodeinfo = getrootinactivewindow();
if (nodeinfo != null) {
list<accessibilitynodeinfo> list = nodeinfo
.findaccessibilitynodeinfosbytext("抢红包");
for (accessibilitynodeinfo n : list) {
n.performaction(accessibilitynodeinfo.action_click);
}
}
}
@suppresslint("newapi")
private void getpacket() {
accessibilitynodeinfo rootnode = getrootinactivewindow();
recycle(rootnode);
}
/**
* 打印一个节点的结构
* @param info
*/
@suppresslint("newapi")
public void recycle(accessibilitynodeinfo info) {
if (info.getchildcount() == 0) {
if(info.gettext() != null){
if("领取红包".equals(info.gettext().tostring())){
//这里有一个问题需要注意,就是需要找到一个可以点击的view
log.i("demo", "click"+",isclick:"+info.isclickable());
info.performaction(accessibilitynodeinfo.action_click);
accessibilitynodeinfo parent = info.getparent();
while(parent != null){
log.i("demo", "parent isclick:"+parent.isclickable());
if(parent.isclickable()){
parent.performaction(accessibilitynodeinfo.action_click);
break;
}
parent = parent.getparent();
}
}
}
} else {
for (int i = 0; i < info.getchildcount(); i++) {
if(info.getchild(i)!=null){
recycle(info.getchild(i));
}
}
}
}
@override
public void oninterrupt() {
}
}

代码没什么好说的了,按照我们之前说的三个步骤来就可以了,但是这里需要注意点细节上的问题:

1、我们在监听到通知栏的消息的时候,调用如下代码来进行通知栏的消息点击

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if (content.contains("[微信红包]")) {
//模拟打开通知栏消息
if (event.getparcelabledata() != null
&&
event.getparcelabledata() instanceof notification) {
notification notification = (notification) event.getparcelabledata();
pendingintent pendingintent = notification.contentintent;
try {
pendingintent.send();
} catch (canceledexception e) {
e.printstacktrace();
}
}
}

2、我们在模拟点击通知栏消息之后,还是需要监听:accessibilityevent.type_window_state_changed 这个事件,这个事件我们以后会经常用到,这个事件就是在窗口发生改变的时候发出来的事件,很常用的,比如我们可以通过这个事件来监听topactivity,然后得到包名,这也是一个实现应用锁的一个原理。

3、我们在查找领取红包的时候,模拟点击的时候做了一个工作,就是从“领取红包”文本的控件view网上查找,查找到一个可以点击的view出来,然后模拟点击

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if(info.gettext() != null){
if("领取红包".equals(info.gettext().tostring())){
//这里有一个问题需要注意,就是需要找到一个可以点击的view
log.i("demo", "click"+",isclick:"+info.isclickable());
info.performaction(accessibilitynodeinfo.action_click);
accessibilitynodeinfo parent = info.getparent();
while(parent != null){
log.i("demo", "parent isclick:"+parent.isclickable());
if(parent.isclickable()){
parent.performaction(accessibilitynodeinfo.action_click);
break;
}
parent = parent.getparent();
}
}
}

这里为什么这么做,其实原理很简单,因为我们不知道微信他的界面布局,也不知道他对哪个view进行了setonclicklistener。我们可以写一个例子,performaction方法只对调用了setonclicklistener方法的view模拟点击才有效,其实看view的源码也是可以看出来的.这里就不多解释了。所以我们就需要得到一个view节点之后,从下往上找,直到找到一个可以click的view为止。

技术延展:

我们其实还可以使用ddms工具里的dump view hierarchy for ui automator 去分析微信ui结构,这个方法也是我后面才发现的,比上面的代码更有效,如下图:

Android中微信抢红包插件原理解析及开发思路

Android中微信抢红包插件原理解析及开发思路Android中微信抢红包插件原理解析及开发思路

这里我们可以看到view的详细布局,还有每个view的属性,还有很重要的信息resource-id,这个就是我们在xml中定义的id,这个id我们也可以使用前面说到的findaccessibilitynodeinfosbyviewid("@id/xxx")来查找控件了
这个也算是学习了,学会使用ddms来分析view结构。

四、延展

关于微信抢红包的原理解析上面已经做了分析了,但是要想做到极致,这里还有很多问题的,比如我们还需要过滤一些已经领取过的红包,这样的话效率也是很高的。这个都是算法精确的问题了,我想在这里说的是,我们不仅可以用辅助功能来实现抢红包,还可以实现很多功能,比如

1、静默安装

对于这两个要求,我们或许很难得到,那么现在如果有了辅助功能,我们就好做了:

Android中微信抢红包插件原理解析及开发思路

我们可以监听系统的这个安装界面,然后得到安装节点view,然后模拟点击即可,卸载也是同样的原理

2、强制停止应用

我们知道android中停止应用有很多方法,kill进程,stopservice,但是这些方法,有一些应用它们都是有对策的,那么我们之前用到的强制停止的方法是获取root权限调用系统的forcestop的api来停止,但是前提还是有root。那么现在如果我们有了辅助功能的话,我们可以这么做:

Android中微信抢红包插件原理解析及开发思路

我们可以监听系统的应用详情页面,然后找到:结束运行的节点view,然后模拟点击即可

当然上面我就说了两个简单的例子,还有很多辅助功能都是可以做的。他的好处就是不需要root权限。但是他也是需要用户授权的:

Android中微信抢红包插件原理解析及开发思路

如果用户没有授权的话,那么所有的工作都没办法开始了,所以说这个方法也不是万能的。当然说句题外话:有了辅助功能的话,他的危险性比root之后的危险性更大,比如我们上面的抢红包插件,其实我们稍作修改,就可以获取微信通讯录信息,微信支付的密码。这些事都是可以做的,所以说,我们在作为用户的时候,进行授权的时候还是需要三思而后行。

五、总结

关于辅助功能,之前没有太多的接触,是在一次工作中用到了这个功能,就去学习了一下,作为自己的兴趣,就延展了学习了如何写一个微信抢红包的插件,同时可以考虑了使用辅助功能能够做我们之前需要root做的事情。当然辅助功能是google对于肢体上有障碍的人开发出来的一个功能,我们开发者或许使用这个功能,可以做一下产品的拓展功能,当然这些是google没有想到的事情,但是这个至少是我们开发者在以后的开发道路上的一个解决问题的一个办法和途径,谨记此功能!

延伸 · 阅读

精彩推荐