|
@@ -5,6 +5,7 @@ import android.accessibilityservice.GestureDescription;
|
|
import android.app.Notification;
|
|
import android.app.Notification;
|
|
import android.app.PendingIntent;
|
|
import android.app.PendingIntent;
|
|
import android.content.ComponentName;
|
|
import android.content.ComponentName;
|
|
|
|
+import android.content.Intent;
|
|
import android.content.SharedPreferences;
|
|
import android.content.SharedPreferences;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.PackageManager;
|
|
import android.graphics.Path;
|
|
import android.graphics.Path;
|
|
@@ -22,6 +23,9 @@ import java.util.List;
|
|
import me.yoqi.app.wxredpacket.utils.HongbaoSignature;
|
|
import me.yoqi.app.wxredpacket.utils.HongbaoSignature;
|
|
import me.yoqi.app.wxredpacket.utils.PowerUtil;
|
|
import me.yoqi.app.wxredpacket.utils.PowerUtil;
|
|
|
|
|
|
|
|
+/**
|
|
|
|
+ * 红包服务,后台监听微信消息,出现红包关键词就打开微信抢红包。
|
|
|
|
+ */
|
|
public class HongbaoService extends AccessibilityService implements SharedPreferences.OnSharedPreferenceChangeListener {
|
|
public class HongbaoService extends AccessibilityService implements SharedPreferences.OnSharedPreferenceChangeListener {
|
|
private static final String WECHAT_DETAILS_EN = "Details";
|
|
private static final String WECHAT_DETAILS_EN = "Details";
|
|
private static final String WECHAT_DETAILS_CH = "红包详情";
|
|
private static final String WECHAT_DETAILS_CH = "红包详情";
|
|
@@ -45,9 +49,8 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
|
|
|
|
private PowerUtil powerUtil;
|
|
private PowerUtil powerUtil;
|
|
private SharedPreferences sharedPreferences;
|
|
private SharedPreferences sharedPreferences;
|
|
-
|
|
|
|
/**
|
|
/**
|
|
- * AccessibilityEvent
|
|
|
|
|
|
+ * AccessibilityEvent,收到event,过滤红包信息
|
|
*
|
|
*
|
|
* @param event 事件
|
|
* @param event 事件
|
|
*/
|
|
*/
|
|
@@ -72,7 +75,12 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 监听是否进入微信红包消息界面
|
|
|
|
+ * @param event
|
|
|
|
+ */
|
|
private void watchChat(AccessibilityEvent event) {
|
|
private void watchChat(AccessibilityEvent event) {
|
|
|
|
+ Log.i("hongbaoservice","watchChat");
|
|
|
|
+
|
|
this.rootNodeInfo = getRootInActiveWindow();
|
|
this.rootNodeInfo = getRootInActiveWindow();
|
|
|
|
|
|
if (rootNodeInfo == null) return;
|
|
if (rootNodeInfo == null) return;
|
|
@@ -109,7 +117,11 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 点击“打开”,收红包
|
|
|
|
+ */
|
|
private void openPacket() {
|
|
private void openPacket() {
|
|
|
|
+ Log.i("hongbaoservice","openPacket");
|
|
DisplayMetrics metrics = getResources().getDisplayMetrics();
|
|
DisplayMetrics metrics = getResources().getDisplayMetrics();
|
|
float dpi = metrics.density;
|
|
float dpi = metrics.density;
|
|
if (android.os.Build.VERSION.SDK_INT <= 23) {
|
|
if (android.os.Build.VERSION.SDK_INT <= 23) {
|
|
@@ -144,7 +156,19 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ /**
|
|
|
|
+ * 返回桌面
|
|
|
|
+ */
|
|
|
|
+ private void back2Home() {
|
|
|
|
+ Intent home=new Intent(Intent.ACTION_MAIN);
|
|
|
|
+ home.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
|
|
+ home.addCategory(Intent.CATEGORY_HOME);
|
|
|
|
+ startActivity(home);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param event
|
|
|
|
+ */
|
|
private void setCurrentActivityName(AccessibilityEvent event) {
|
|
private void setCurrentActivityName(AccessibilityEvent event) {
|
|
if (event.getEventType() != AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) {
|
|
if (event.getEventType() != AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED) {
|
|
return;
|
|
return;
|
|
@@ -163,7 +187,12 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 监视进入微信app聊天列表:case AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED
|
|
|
|
+ * @param event
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private boolean watchList(AccessibilityEvent event) {
|
|
private boolean watchList(AccessibilityEvent event) {
|
|
|
|
+ Log.i("hongbaoservice","watchList");
|
|
if (mListMutex) return false;
|
|
if (mListMutex) return false;
|
|
mListMutex = true;
|
|
mListMutex = true;
|
|
AccessibilityNodeInfo eventSource = event.getSource();
|
|
AccessibilityNodeInfo eventSource = event.getSource();
|
|
@@ -172,8 +201,8 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
return false;
|
|
return false;
|
|
|
|
|
|
List<AccessibilityNodeInfo> nodes = eventSource.findAccessibilityNodeInfosByText(WECHAT_NOTIFICATION_TIP);
|
|
List<AccessibilityNodeInfo> nodes = eventSource.findAccessibilityNodeInfosByText(WECHAT_NOTIFICATION_TIP);
|
|
- //增加条件判断currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY)
|
|
|
|
//避免当订阅号中出现标题为“[微信红包]拜年红包”(其实并非红包)的信息时误判
|
|
//避免当订阅号中出现标题为“[微信红包]拜年红包”(其实并非红包)的信息时误判
|
|
|
|
+ //判断是否是微信聊天界面com.tencent.mm.ui.LauncherUI
|
|
if (!nodes.isEmpty() && currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY)) {
|
|
if (!nodes.isEmpty() && currentActivityName.contains(WECHAT_LUCKMONEY_GENERAL_ACTIVITY)) {
|
|
AccessibilityNodeInfo nodeToClick = nodes.get(0);
|
|
AccessibilityNodeInfo nodeToClick = nodes.get(0);
|
|
if (nodeToClick == null) return false;
|
|
if (nodeToClick == null) return false;
|
|
@@ -187,7 +216,13 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 监听通知栏消息,判断红包
|
|
|
|
+ * @param event
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private boolean watchNotifications(AccessibilityEvent event) {
|
|
private boolean watchNotifications(AccessibilityEvent event) {
|
|
|
|
+ Log.i("hongbaoservice","watchNotifications");
|
|
|
|
+
|
|
// Not a notification
|
|
// Not a notification
|
|
if (event.getEventType() != AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED)
|
|
if (event.getEventType() != AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED)
|
|
return false;
|
|
return false;
|
|
@@ -202,7 +237,7 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
try {
|
|
try {
|
|
/* 清除signature,避免进入会话后误判 */
|
|
/* 清除signature,避免进入会话后误判 */
|
|
signature.cleanSignature();
|
|
signature.cleanSignature();
|
|
-
|
|
|
|
|
|
+// 模拟打开通知栏消息
|
|
notification.contentIntent.send();
|
|
notification.contentIntent.send();
|
|
} catch (PendingIntent.CanceledException e) {
|
|
} catch (PendingIntent.CanceledException e) {
|
|
e.printStackTrace();
|
|
e.printStackTrace();
|
|
@@ -213,9 +248,13 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
|
|
|
|
@Override
|
|
@Override
|
|
public void onInterrupt() {
|
|
public void onInterrupt() {
|
|
-
|
|
|
|
|
|
+ Log.d("HongbaoService", "抢红包服务快被终结了");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 找到红包节点按钮
|
|
|
|
+ * @param node 输入的根节点
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private AccessibilityNodeInfo findOpenButton(AccessibilityNodeInfo node) {
|
|
private AccessibilityNodeInfo findOpenButton(AccessibilityNodeInfo node) {
|
|
if (node == null)
|
|
if (node == null)
|
|
return null;
|
|
return null;
|
|
@@ -238,6 +277,9 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
return null;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 检测红包节点,mReceiveNode
|
|
|
|
+ * @param eventType
|
|
|
|
+ */
|
|
private void checkNodeInfo(int eventType) {
|
|
private void checkNodeInfo(int eventType) {
|
|
if (this.rootNodeInfo == null) return;
|
|
if (this.rootNodeInfo == null) return;
|
|
|
|
|
|
@@ -273,6 +315,7 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
boolean hasNodes = this.hasOneOfThoseNodes(
|
|
boolean hasNodes = this.hasOneOfThoseNodes(
|
|
WECHAT_BETTER_LUCK_CH, WECHAT_DETAILS_CH,
|
|
WECHAT_BETTER_LUCK_CH, WECHAT_DETAILS_CH,
|
|
WECHAT_BETTER_LUCK_EN, WECHAT_DETAILS_EN, WECHAT_EXPIRES_CH);
|
|
WECHAT_BETTER_LUCK_EN, WECHAT_DETAILS_EN, WECHAT_EXPIRES_CH);
|
|
|
|
+ //判断是否是红包领取后的详情界面 //判断是否是显示‘开'的那个红包界面com.tencent.mm.plugin.luckymoney.ui.LuckyMoneyReceiveUI
|
|
if (mMutex && eventType == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED && hasNodes
|
|
if (mMutex && eventType == AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED && hasNodes
|
|
&& (currentActivityName.contains(WECHAT_LUCKMONEY_DETAIL_ACTIVITY)
|
|
&& (currentActivityName.contains(WECHAT_LUCKMONEY_DETAIL_ACTIVITY)
|
|
|| currentActivityName.contains(WECHAT_LUCKMONEY_RECEIVE_ACTIVITY))) {
|
|
|| currentActivityName.contains(WECHAT_LUCKMONEY_RECEIVE_ACTIVITY))) {
|
|
@@ -284,6 +327,9 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 发送回复
|
|
|
|
+ */
|
|
private void sendComment() {
|
|
private void sendComment() {
|
|
try {
|
|
try {
|
|
AccessibilityNodeInfo outNode =
|
|
AccessibilityNodeInfo outNode =
|
|
@@ -302,6 +348,10 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param texts
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private boolean hasOneOfThoseNodes(String... texts) {
|
|
private boolean hasOneOfThoseNodes(String... texts) {
|
|
List<AccessibilityNodeInfo> nodes;
|
|
List<AccessibilityNodeInfo> nodes;
|
|
for (String text : texts) {
|
|
for (String text : texts) {
|
|
@@ -314,6 +364,10 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param texts
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private AccessibilityNodeInfo getTheLastNode(String... texts) {
|
|
private AccessibilityNodeInfo getTheLastNode(String... texts) {
|
|
int bottom = 0;
|
|
int bottom = 0;
|
|
AccessibilityNodeInfo lastNode = null, tempNode;
|
|
AccessibilityNodeInfo lastNode = null, tempNode;
|
|
@@ -345,6 +399,9 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
this.watchFlagsFromPreference();
|
|
this.watchFlagsFromPreference();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 如果设置了锁屏抢则,解锁屏幕
|
|
|
|
+ */
|
|
private void watchFlagsFromPreference() {
|
|
private void watchFlagsFromPreference() {
|
|
sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
|
|
sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
|
|
sharedPreferences.registerOnSharedPreferenceChangeListener(this);
|
|
sharedPreferences.registerOnSharedPreferenceChangeListener(this);
|
|
@@ -368,6 +425,9 @@ public class HongbaoService extends AccessibilityService implements SharedPrefer
|
|
super.onDestroy();
|
|
super.onDestroy();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /** 获取回复字符串
|
|
|
|
+ * @return 返回回复字符串
|
|
|
|
+ */
|
|
private String generateCommentString() {
|
|
private String generateCommentString() {
|
|
if (!signature.others) return null;
|
|
if (!signature.others) return null;
|
|
|
|
|