服务器之家

服务器之家 > 正文

分享Android微信红包插件

时间:2021-04-23 15:19     来源/作者:Android开发网

本文实例为大家分享了android微信红包插件,供大家参考,具体内容如下

效果图:

分享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
@targetapi(build.version_codes.jelly_bean)
 private void handlewindowchange(accessibilitynodeinfo nodeinfo) {
  switch (stage.getinstance().getcurrentstage()) {
   case stage.opening_stage:
    // 调试信息,打印ttl
    // log.d("ttl", string.valueof(ttl));
 
    /* 如果打开红包失败且还没到达最大尝试次数,重试 */
    if (openhongbao(nodeinfo) == -1 && ttl < max_ttl) return;
 
    ttl = 0;
    stage.getinstance().entering(stage.fetched_stage);
    performmyglobalaction(global_action_back);
    if (nodestofetch.size() == 0) handlewindowchange(nodeinfo);
    break;
   case stage.opened_stage:
    listsuccessnodes = nodeinfo.findaccessibilitynodeinfosbytext("红包详情");
    if (successnodes.isempty() && ttl < max_ttl) {
     ttl += 1;
     return;
    }
    ttl = 0;
    stage.getinstance().entering(stage.fetched_stage);
    performmyglobalaction(global_action_back);
    break;
   case stage.fetched_stage:
    /* 先消灭待抢红包队列中的红包 */
    if (nodestofetch.size() > 0) {
     /* 从最下面的红包开始戳 */
     accessibilitynodeinfo node = nodestofetch.remove(nodestofetch.size() - 1);
     if (node.getparent() != null) {
      string id = gethongbaohash(node);
 
      if (id == null) return;
 
      fetchedidentifiers.add(id);
 
      // 调试信息,在每次打开红包后打印出已经获取的红包
      // log.d("fetched", arrays.tostring(fetchedidentifiers.toarray()));
 
      stage.getinstance().entering(stage.opening_stage);
      node.getparent().performaction(accessibilitynodeinfo.action_click);
     }
     return;
    }
 
    stage.getinstance().entering(stage.fetching_stage);
    fetchhongbao(nodeinfo);
    stage.getinstance().entering(stage.fetched_stage);
    break;
  }
 }

插件下载: 《分享android微信红包插件》

希望本文所述对大家实现微信红包功能有所帮助,帮助大家更好的学习android软件编程。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
返回顶部