|
@@ -4,12 +4,17 @@ import android.graphics.Rect;
|
|
import android.view.accessibility.AccessibilityNodeInfo;
|
|
import android.view.accessibility.AccessibilityNodeInfo;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * Created by Zhongyi on 1/21/16.
|
|
|
|
|
|
+ * 红包标志
|
|
*/
|
|
*/
|
|
public class HongbaoSignature {
|
|
public class HongbaoSignature {
|
|
public String sender, content, time, contentDescription = "", commentString;
|
|
public String sender, content, time, contentDescription = "", commentString;
|
|
public boolean others;
|
|
public boolean others;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param node
|
|
|
|
+ * @param excludeWords
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
public boolean generateSignature(AccessibilityNodeInfo node, String excludeWords) {
|
|
public boolean generateSignature(AccessibilityNodeInfo node, String excludeWords) {
|
|
try {
|
|
try {
|
|
/* The hongbao container node. It should be a LinearLayout. By specifying that, we can avoid text messages. */
|
|
/* The hongbao container node. It should be a LinearLayout. By specifying that, we can avoid text messages. */
|
|
@@ -50,11 +55,18 @@ public class HongbaoSignature {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return this.getSignature(this.sender, this.content, this.time);
|
|
return this.getSignature(this.sender, this.content, this.time);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param strings
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private String getSignature(String... strings) {
|
|
private String getSignature(String... strings) {
|
|
String signature = "";
|
|
String signature = "";
|
|
for (String str : strings) {
|
|
for (String str : strings) {
|
|
@@ -65,14 +77,24 @@ public class HongbaoSignature {
|
|
return signature.substring(0, signature.length() - 1);
|
|
return signature.substring(0, signature.length() - 1);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
public String getContentDescription() {
|
|
public String getContentDescription() {
|
|
return this.contentDescription;
|
|
return this.contentDescription;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param description
|
|
|
|
+ */
|
|
public void setContentDescription(String description) {
|
|
public void setContentDescription(String description) {
|
|
this.contentDescription = description;
|
|
this.contentDescription = description;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @param node
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
private String[] getSenderContentDescriptionFromNode(AccessibilityNodeInfo node) {
|
|
private String[] getSenderContentDescriptionFromNode(AccessibilityNodeInfo node) {
|
|
int count = node.getChildCount();
|
|
int count = node.getChildCount();
|
|
String[] result = {"unknownSender", "unknownTime"};
|
|
String[] result = {"unknownSender", "unknownTime"};
|
|
@@ -90,6 +112,9 @@ public class HongbaoSignature {
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 清除红包标志
|
|
|
|
+ */
|
|
public void cleanSignature() {
|
|
public void cleanSignature() {
|
|
this.content = "";
|
|
this.content = "";
|
|
this.time = "";
|
|
this.time = "";
|