Android 自动更新时间的数字时钟 TextClock

7 篇文章 0 订阅

TextClock 继承 TextView ,使用方法和 TextView 一样。

它专门用于显示数字时钟,可以自定义显示格式。

只要在布局文件里添加,它会自动更新时间,不需要添加刷新逻辑。

布局文件,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="未设置Format:"
            android:textColor="@android:color/black"
            android:textSize="30sp" />

        <TextClock
            android:id="@+id/textclock0"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="#4B5C92"
            android:textSize="30sp" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="yyyy/MM/dd EEEE HH:mm:ss : "
            android:textColor="@android:color/black"
            android:textSize="30sp" />

        <TextClock
            android:id="@+id/textclock1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:format12Hour="yyyy/MM/dd EEEE hh:mm:ss"
            android:format24Hour="yyyy/MM/dd EEEE HH:mm:ss"
            android:textColor="#4B5C92"
            android:textSize="30sp" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="yyyy/M/dd EEE HH:mm:ss : "
            android:textColor="@android:color/black"
            android:textSize="30sp" />

        <TextClock
            android:id="@+id/textclock2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:format12Hour="yyyy/M/dd EEE hh:mm:ss"
            android:format24Hour="yyyy/M/dd EEE HH:mm:ss"
            android:textColor="#4B5C92"
            android:textSize="30sp" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="MM dd EEEE HH:mm : "
            android:textColor="@android:color/black"
            android:textSize="30sp" />

        <TextClock
            android:id="@+id/textclock3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:format12Hour="MM dd EEEE hh:mm"
            android:format24Hour="MM dd EEEE HH:mm"
            android:textColor="#4B5C92"
            android:textSize="30sp" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="MMM dd EEE HH:mm :"
            android:textColor="@android:color/black"
            android:textSize="30sp" />

        <TextClock
            android:id="@+id/textclock4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:format12Hour="MMM dd EEE HH:mm"
            android:format24Hour="MMM dd EEE HH:mm"
            android:textColor="#4B5C92"
            android:textSize="30sp" />
    </LinearLayout>

</LinearLayout>

实际效果,
中文,24小时制
在这里插入图片描述

总结:

如果不设置 android:format12Hour 、android:format24Hour ,默认以 12:48 格式显示。

如果设置了 format ,参考表格

格式效果
yyyy/M/dd2024/6/25
yyyy/MM/dd2024/06/25
MMM6月
EEE中文显示周几;英文显示星期缩写,如 Thu
EEEE中文显示星期几;英文显示星期完整拼写,如 Thurday
HH:mm:ss15:32:16
hh:mm:ss03:32:16
a是否显示 AM/PM
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>