如何在 visual studio 中更改 xamarin 中的时钟格式?
how to change the clock format in xamarin in visual studio?
我想要一个24小时格式的时钟也显示秒,所以我在文本时钟中写了这行代码
android:format24Hour="hh:mm:ss"
我的问题是,例如,现在时间 17:58:50 但应用程序显示 5:58:50 并且我想要 17:58:50。
谢谢你的帮助,我也想知道你是怎么找到答案的,因为我为此做了很多研究,但我没有找到答案,我想变得更加独立
你应该使用 HH
instead of hh
作为 android:format24Hour
The "HH" custom format specifier (plus any number of additional "H"
specifiers) represents the hour as a number from 00 through 23; that
is, the hour is represented by a zero-based 24-hour clock that counts
the hours since midnight. A single-digit hour is formatted with a
leading zero.
android:format24Hour="HH:mm:ss"
//^^ HH uses 24-hour clock, from 00 to 23
我想要一个24小时格式的时钟也显示秒,所以我在文本时钟中写了这行代码
android:format24Hour="hh:mm:ss"
我的问题是,例如,现在时间 17:58:50 但应用程序显示 5:58:50 并且我想要 17:58:50。 谢谢你的帮助,我也想知道你是怎么找到答案的,因为我为此做了很多研究,但我没有找到答案,我想变得更加独立
你应该使用 HH
instead of hh
作为 android:format24Hour
The "HH" custom format specifier (plus any number of additional "H" specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.
android:format24Hour="HH:mm:ss"
//^^ HH uses 24-hour clock, from 00 to 23