アンドロイドのドキュメントは言う
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 ファイルから上記のセクション情報を取得するにはどうすればよいですか