Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac645bae authored by Felipe Leme's avatar Felipe Leme
Browse files

Improved AccessibilityNodeInfo.toString().

Test: manual verification
Bug: 70292857

Change-Id: I2d81071402c429ed29e6c5b443956b085944e12f
parent ad6c1ed8
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -3695,8 +3695,9 @@ public class AccessibilityNodeInfo implements Parcelable {

        if (DEBUG) {
            builder.append("; sourceNodeId: " + mSourceNodeId);
            builder.append("; accessibilityViewId: " + getAccessibilityViewId(mSourceNodeId));
            builder.append("; virtualDescendantId: " + getVirtualDescendantId(mSourceNodeId));
            builder.append("; windowId: " + mWindowId);
            builder.append("; accessibilityViewId: ").append(getAccessibilityViewId(mSourceNodeId));
            builder.append("; virtualDescendantId: ").append(getVirtualDescendantId(mSourceNodeId));
            builder.append("; mParentNodeId: " + mParentNodeId);
            builder.append("; traversalBefore: ").append(mTraversalBefore);
            builder.append("; traversalAfter: ").append(mTraversalAfter);
@@ -3726,8 +3727,8 @@ public class AccessibilityNodeInfo implements Parcelable {
            builder.append("]");
        }

        builder.append("; boundsInParent: " + mBoundsInParent);
        builder.append("; boundsInScreen: " + mBoundsInScreen);
        builder.append("; boundsInParent: ").append(mBoundsInParent);
        builder.append("; boundsInScreen: ").append(mBoundsInScreen);

        builder.append("; packageName: ").append(mPackageName);
        builder.append("; className: ").append(mClassName);