计算机技术实战

纸上得来终觉浅,绝知此事要躬行。

Download this project as a .zip file Download this project as a tar.gz file

启动优化实践

命令行查看启动耗时:

adb shell am start -S -W topic.android.sample.performance/.MainActivity
Stopping: topic.android.sample.performance
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=topic.android.sample.performance/.MainActivity }
Status: ok
Activity: topic.android.sample.performance/.MainActivity
ThisTime: 407
TotalTime: 407
WaitTime: 451
Complete

启动阶段各个操作对启动时间的影响:

解决方案:

使用systrace

1.代码添加

    TraceCompat.beginSection(sectionName);
    // do something
    TraceCompat.endSection();

python systrace.py -t 5 -a topic.android.sample.performance

adb shell am start -S -W topic.android.sample.performance/.MainActivity