I wanna know a corresponding method in Android/Java that is like the GetTickCount method in C#/C++?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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 |
||||
|
|