android-在“ adb shell uiautomator dump view.xml”之后哪里可以看到xml文件
作者:互联网
这个问题已经在这里有了答案: > Is there a way to get current activity’s layout and views via adb? 5个
我用命令
adb shell uiautomator dump view.xml
转储当前Android屏幕的UI层次结构.然后,我尝试查看view.xml,并尝试执行以下命令:
adb shell cat view.xml
但得到错误:
/system/bin/sh: cat: view.xml: No such file or directory
如何/在哪里可以看到转储的view.xml文件?
解决方法:
您为什么不执行以下操作:
adb shell uiautomator dump
adb pull /sdcard/window_dump.xml
如果您直接想从shell中读取,则可以在转储XML之后从adb shell执行以下命令
adb shell cat /sdcard/window_dump.xml
标签:adb,android-uiautomator,android 来源: https://codeday.me/bug/20191026/1938744.html