进入SDK目录
cmd 进入android-sdk/tools 输入 monitor
TraceView的使用
1、选择跟踪范围
Debug.startMethodTracing(“”);
Debug.stopMethodTracing();
进入shell模式 adb shell 查看是否已经生产这个文件 ls sdcard/文件名 导出文件 adb pull sdcard/文件名.trace
打开trace文件 monitor File -> Open File -> trace文件
2、DDMS -> Start Method Profiling
网友评论