其他分享
首页 > 其他分享> > adb获取当前页面的UI布局层次结构

adb获取当前页面的UI布局层次结构

作者:互联网

获取当前应用的activity屏幕上所有控件的UI布局层次结构关系并保存在xml文件里面,可以执行下面命令:

adb shell uiautomator dump /sdcard/ui.xml

实质是调用了Android系统下的/system/bin/uiautomator.jardumpWindowHierarchy方法。

参考:
http://android-doc.github.io/tools/help/uiautomator/index.html
http://android-doc.github.io/tools/help/uiautomator/UiDevice.html#dumpWindowHierarchy(java.lang.String)
https://developer.android.com/reference/androidx/test/uiautomator/UiDevice#dumpwindowhierarchy

标签:xml,help,uiautomator,层次结构,UI,io,adb,android,tools
来源: https://blog.csdn.net/lilongsy/article/details/117849284