Android控件篇 实时显示时间控件 TextClock
Posted 彭老希
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android控件篇 实时显示时间控件 TextClock相关的知识,希望对你有一定的参考价值。
效果图:
代码如下:
<TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/margin_largger_8x"
android:layout_gravity="center"
android:format24Hour ="HH:mm"
android:format12Hour ="hh:mm"
android:textColor="@color/white"
android:textSize="@dimen/text_size_70" />
<TextClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_time"
android:layout_centerHorizontal="true"
android:format24Hour ="MM月dd日 EEEE"
android:format12Hour ="MM月dd日 EEEE"
android:textColor="@color/white"
android:textSize="@dimen/text_size_20" />
以上是关于Android控件篇 实时显示时间控件 TextClock的主要内容,如果未能解决你的问题,请参考以下文章
Android控件篇 TextView限制文字长度且超过显示省略号