Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道当前的设备时间格式。
表示 24 小时/12 小时格式。
请让我知道我该如何确定。
是否有任何 API 可以确定这一点。
谢谢。
String value = android.provider.Settings.System.getString(context.getContentResolver(), android.provider.Settings.System.TIME_12_24);
更新的答案,您应该使用它而不是上面的,因为上面可能会返回一个空值:
DateFormat.is24HourFormat(context)
这可能会帮助你......
答案来源链接: https://developer.android.com/reference/android/text/format/DateFormat.html#is24HourFormat(android.content.Context)