android中的文档说
you can use the methods of the Trace class to add instrumentation to
your application code and see the results in a Systrace report.
我已将以下方法添加到我的代码中
Trace.beginSection("test-trace");
// block of code
Trace.endSection();
现在我在哪里可以检查本节的结果。我从 android 设备监视器启动 systrace 工具并记录了 30 秒(执行了执行上述块的按钮单击)。它生成 trace.html 文件,但我如何从这个 html 文件中获取上述部分信息