当前位置:   article > 正文

Android 时间显示控件 TextClock_textclock显示星期几

textclock显示星期几

Android 时间显示控件 TextClock

TextClock可用作显示时间,API>=17,用来替代DigitalClock。

系统设置以24小时格式的时候使用这个format

android:format24Hour="HH:mm"
  • 1

系统设置以12小时显示的时候使用这个format

android:format12Hour=”hh:mm” 
  • 1

一些format

MM   6
MMM  6月
MMMM 六月
EE   周六
EEEE 星期六
aa   上午/下午
HH   24小时制
hh   12小时制
dd   日
yyyy 年份
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

示例

<TextClock
    android:id="@+id/textClock"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:format24Hour="HH:mm\r\nMM月dd日 EEEE"
    android:format12Hour="hh:mm\r\nMM月dd日 EEEE" />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

显示效果

11:21
06月01日 星期四
  • 1
  • 2

其他

TextClock Developers

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/920673
推荐阅读
相关标签
  

闽ICP备14008679号