Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
151 views
in Technique[技术] by (71.8m points)

android - Time that an application is running

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...