|
@@ -36,7 +36,8 @@ public class HongbaoSignature {
|
|
|
|
|
|
/* The sender and possible timestamp. Should mean something too. */
|
|
/* The sender and possible timestamp. Should mean something too. */
|
|
String[] hongbaoInfo = getSenderContentDescriptionFromNode(messageNode);
|
|
String[] hongbaoInfo = getSenderContentDescriptionFromNode(messageNode);
|
|
- if (this.getSignature(hongbaoInfo[0], hongbaoContent, hongbaoInfo[1]).equals(this.toString())) return false;
|
|
|
|
|
|
+ if (this.getSignature(hongbaoInfo[0], hongbaoContent, hongbaoInfo[1]).equals(this.toString()))
|
|
|
|
+ return false;
|
|
|
|
|
|
/* So far we make sure it's a valid new coming hongbao. */
|
|
/* So far we make sure it's a valid new coming hongbao. */
|
|
this.sender = hongbaoInfo[0];
|
|
this.sender = hongbaoInfo[0];
|
|
@@ -79,7 +80,8 @@ public class HongbaoSignature {
|
|
AccessibilityNodeInfo thisNode = node.getChild(i);
|
|
AccessibilityNodeInfo thisNode = node.getChild(i);
|
|
if ("android.widget.ImageView".equals(thisNode.getClassName()) && "unknownSender".equals(result[0])) {
|
|
if ("android.widget.ImageView".equals(thisNode.getClassName()) && "unknownSender".equals(result[0])) {
|
|
CharSequence contentDescription = thisNode.getContentDescription();
|
|
CharSequence contentDescription = thisNode.getContentDescription();
|
|
- if (contentDescription != null) result[0] = contentDescription.toString().replaceAll("头像$", "");
|
|
|
|
|
|
+ if (contentDescription != null)
|
|
|
|
+ result[0] = contentDescription.toString().replaceAll("头像$", "");
|
|
} else if ("android.widget.TextView".equals(thisNode.getClassName()) && "unknownTime".equals(result[1])) {
|
|
} else if ("android.widget.TextView".equals(thisNode.getClassName()) && "unknownTime".equals(result[1])) {
|
|
CharSequence thisNodeText = thisNode.getText();
|
|
CharSequence thisNodeText = thisNode.getText();
|
|
if (thisNodeText != null) result[1] = thisNodeText.toString();
|
|
if (thisNodeText != null) result[1] = thisNodeText.toString();
|