I need to get the Android device timestamp in the format hh:mm:ss:SS. I am able to view the time displayed in the Logcat of Eclipse. Is it the computer's time or is it the Android device's time?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you are running your app on Android device then it will print device's time, if on emulator then it will show computer's time. To be ensure just match the Log's time with device's time and with computer's time you will find your answer.. |
|||
|
|
|
From the docs of logcat you can see that there is an option to specify how the output is formatted (-v). To get a timestamp, you can use the command
This will prefix each message with a timestamp. |
|||
|
|
|
If you need the device date programmatically:
|
||||
|
|
|
Taken from Reading and Writing Logs on the Developer Site: "time — Display the date, invocation time, priority/tag, and PID of the process issuing the message." On the emulator it will be your computers time, on a device it will be time of your device... |
|||
|
|
