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
网友评论