Android APP专项测试整理-启动速度

来源:互联网 发布:魔兽对战平台 mac 编辑:程序博客网 时间:2024/04/29 03:58

启动速度评判标准:


启动一般分为:

冷启动:首次启动

冷启动命令:adb shell am start -W -n 包名/activity

冷启动停止:adb shell am force-stop 包名

热启动:应用切换到后台再次被唤起

热启动命令:adb shell am start -W -n 包名/activity

热启动停止:adb shell input keyevent 3

0 0