views:

892

answers:

2

I'm currently using the following code to format time on Google Android:

DateFormat.getDateTimeInstance().format(millis)

While this code honors my timezone and locale settings, it ignores the '24 hour mode' setting in system preferences, always returning time in AM/PM. Is there any way to get time in the same format as that on the status bar?

A: 

Use the java.text.SimpleDateFormat class.

Tughi
+3  A: 

In theory (never tried this yet), you can use

http://developer.android.com/reference/android/text/format/DateFormat.html

To get formatters based on your settings. YMMV.

Nate