android 怎么分析app界面布局(device monit
2019-11-17 本文已影响0人
大胡子的机器人
android 的device monitor不起作用,抓取不到真机android 9.0 的uix,可以采用adb命令的办法,分两步,一步获取uix,一步获取截图。
命令如下:
//步骤一
adb shell uiautomator dump /sdcard/screen.uix
adb pull /sdcard/screen.uix D:/screen.uix
//步骤二
adb shell screencap -p /sdcard/screen.png
adb pull /sdcard/screen.png D:/screen.png