Time that an application is running

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.

Leave a Comment