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实时显示时间日期(极简)

记录学习Android基础的心得09:常用控件(高级篇)

Android Studio 入门——002 控件篇

Android控件篇 TextView限制文字长度且超过显示省略号

记录学习Android基础的心得08:常用控件(中级篇)P2

Android 实时视频采集—Camera预览采集与显示(平台系统camera功能理解分享)