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

Commit b25ded06 authored by Yichun Li's avatar Yichun Li Committed by Gerrit Code Review
Browse files

Merge "Add drawing-order and hint to dump cmd xml output" into main

parents ccad2d8f c2738088
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -217,6 +217,9 @@ public class AccessibilityNodeInfoDumper {
        serializer.attribute("", "selected", Boolean.toString(node.isSelected()));
        serializer.attribute("", "bounds", AccessibilityNodeInfoHelper.getVisibleBoundsInScreen(
                node, width, height).toShortString());
        serializer.attribute("", "drawing-order", Integer.toString(node.getDrawingOrder()));
        serializer.attribute("", "hint", safeCharSeqToString(node.getHintText()));

        int count = node.getChildCount();
        for (int i = 0; i < count; i++) {
            AccessibilityNodeInfo child = node.getChild(i);