Android adb shell命令捕获systemtrace
文章来源地址https://www.toymoban.com/news/detail-705474.html
(1)抓取trace文件:
adb shell perfetto -o /data/misc/perfetto-traces/trace_file.perfetto-trace -t 20s sched freq idle am wm gfx view binder_driver hal dalvik camera input res memory
-t 时长,20s,20秒的trace文件。
-o 保存文件路径。
(2)把trace文件从手机中pull拉取到电脑桌面:
adb pull /data/misc/perfetto-traces/trace_file.perfetto-trace C:\Users\fei.zhang\Desktop\
(3)在谷歌官网:
Perfetto UI
打开trace文件:
Android ADB(Andorid Debug Bridge)调试真机设备_adb在线执行器_zhangphil的博客-CSDN博客Android ADB调试真机设备Android ADB(Andorid Debug Bridge),是Android开发中有用的测试和调试工具。使用Android ADB调试设备,直接在Windows的dos命令窗口输入命名adb即可,如图:为什么执行adb命令后是这样?原因是没有把ADB的路径添加到Windows系统路径下。也可以通过把ADB路径添加到.bat批处理文件中得到寻址。...https://blog.csdn.net/zhangphil/article/details/81869814文章来源:https://www.toymoban.com/news/detail-705474.html
到了这里,关于Android adb shell命令捕获systemtrace的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!