Understand the time information of dumpsys gfxinfo
问题 I want to understand the time information on the dumpsys gfxinfo log. It looks like this: Applications Graphics Acceleration Info: Uptime: 16264702 Realtime: 28169900 Can anyone tell me how to associate these figures with System.currentTimeMillis()? 回答1: From ActivityManagerService.java: long uptime = SystemClock.uptimeMillis(); long realtime = SystemClock.elapsedRealtime(); pw.println("Applications Graphics Acceleration Info:"); pw.println("Uptime: " + uptime + " Realtime: " + realtime);