How can I determine whether a device is using 12 or 24-hour time format?

前端 未结 2 1199
你的背包
你的背包 2021-01-03 20:10

I want to know the current device time format.

means 24 hour/ 12 hour format .

Plz let me know how can I determine that.

Are there any API there to d

2条回答
  •  失恋的感觉
    2021-01-03 20:59

    String value = android.provider.Settings.System.getString(context.getContentResolver(), android.provider.Settings.System.TIME_12_24);

    Updated Answer, you should use this instead of the above, as above could give back a null value:

    DateFormat.is24HourFormat(context)
    

提交回复
热议问题