If you are interested in logging your own application's use, you can use System.currentTimeMillis()
to get the start time, and diff it with the value returned when the app is closed.
To get the entire time the app is up, you would want to diff between onCreate()
and onDestroy()
of your foremost Activity class. For just the time the app is in the foreground, use onResume()
and onPause()
in each of your Activity classes and sum the time from each class.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…