Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanna know a corresponding method in Android/Java that is like the GetTickCount method in C#/C++?

share|improve this question

1 Answer

up vote 7 down vote accepted

For android it is SystemClock.uptimeMillis(). Please not that uptimeMIllis does not include time spend in deep sleep. You may need elapsedRealtime() for total time after boot

share|improve this answer
Thanks, will check this soon! – Julian Assange Aug 28 '10 at 9:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.