tags:

views:

26

answers:

1

How do I determine how long an application has been running? Is there a broadcast each time an app is launched and shutdown?

I am trying to log the time spent using an application.

+1  A: 

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.

Aaron C
Is it possible to know how long somebody else's app is running on the phone? Ex: How long is the gmail app running on the phone?
Shoan