adb 常用命令
adb shell dumpsys activity top | grep ACTIVITY
查看当前正在活动的Activity
查看启动时间
adb shell am start -W com.romwe/com.romwe.work.home.SplashUI
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.romwe/.work.home.SplashUI }
Status: ok
LaunchState: COLD
Activity: com.romwe/.work.home.SplashUI
TotalTime: 2105
WaitTime: 2113
Complete
Status: ok
LaunchState: COLD
Activity: com.romwe/.work.home.SplashUI
TotalTime: 2256
WaitTime: 2264
Complete
SZKSG00883:~ 10021077$
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.romwe/.work.home.SplashUI }
Status: ok
LaunchState: COLD
Activity: com.romwe/.work.home.SplashUI
TotalTime: 1911
WaitTime: 1919
Complete
SZKSG00883:~ 10021077$ adb shell am start -W com.romwe/com.romwe.work.home.SplashUI
Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.romwe/.work.home.SplashUI }
Status: ok
LaunchState: COLD
Activity: com.romwe/.work.home.SplashUI
TotalTime: 1910
WaitTime: 1920
Complete
SZKSG00883:~ 10021077$
评论区