我想看看我的踪迹。
1- 在代码中,我添加了这些代码行:
// Start trace recording
android.os.Debug.startMethodTracing("hc_traceview");
和
// Stop trace recording
android.os.Debug.stopMethodTracing();
2- 我可以在 DDMS 的文件资源管理器中看到“ hc_traceview.terac
”。
3-基于Viewing Trace Files in Traceview,我在终端中运行了以下命令:
@hesam-K5VD:~/Desktop/Eclipse/sdk/tools$ traceview /mnt/sdcard/hc_traceview
但输出是:
The standalone version of traceview is deprecated.
Please use Android Device Monitor (tools/monitor) instead.
trace file '/mnt/sdcard/hc_traceview' not found
4-根据建议,我在终端中运行了以下命令:
@hesam-K5VD:~/Desktop/Eclipse/sdk/tools$ monitor /mnt/sdcard/hc_traceview
DDMS 已打开,但我的踪迹不在这里 :( 我怎样才能看到我的踪迹?
任何建议将不胜感激。