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 Andr
If you need the device date programmatically:
SimpleDateFormat s = new SimpleDateFormat("hh:mm:ss"); String format = s.format(new Date());