Android 时钟TextClock 使用及源码分析,字节跳动Andorid岗25k+的面试题

本文介绍了Android中TextClock组件的使用,包括XML属性、常用方法,并提供了实例演示。详细讲解了如何设置12小时制和24小时制格式,以及如何处理时区。同时,分析了TextClock的源码,如chooseFormat()和onTimeChanged()方法的工作原理。
摘要由CSDN通过智能技术生成
  • 如果没获取时间,首先通过 getFormat24Hour()返回值

  • 获取失败,则通过 getFormat12Hour()获取返回值

  • 以上都获取失败则使用默认值,例如 ah:mm

  • 在 12 小时模式下:

  • 如果没获取时间,首先通过 getFormat12Hour()返回值

  • 获取失败,则通过 getFormat24Hour()获取返回值

  • 以上都获取失败则使用默认值,例如 HH:mm

主要XML属性如下:

「android:format12Hour」 设置12小时制的格式。

「android:format24Hour」 设置24小时制的格式。

「android:timeZone」 指定要使用的时区,设置后忽略系统时间变化。

常用方法

「setFormat12Hour(CharSequence format)」:设置12小时制的格式。

「setFormat24Hour(CharSequence format)」:设置24小时制的格式。

「setTimeZone(String timeZone)」:设置要在此时钟中使用的指定时区。

「getFormat12Hour()」:返回12小时制的格式。

「getFormat24Hour()」:返回24小时制的格式。

「getTimeZone()」:指示此视图当前使用的时区。

「is24HourModeEnabled()」:指**「系统」**当前是否使用 24 小时模式。

「onVisibilityAggregated(Boolean isVisible:)」:当此视图的用户可见性可能受到此视图本身、祖先视图或此视图附加到的窗口的更改的影响时调用。

「refreshTime()」:如有必要,更新显示的时间并使视图无效(在API 30中添加)。

示例

看上面介绍十分简单,咱们还是搞个实例了解一下吧,先看效果图。

主界面布局文件

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:orientation=“vertical” android:layout_width=“match_parent”

android:layout_margin="@dimen/dimen_20"

android:layout_height=“match_parent”>

<TextView

android:id="@+id/tv_is24HourModeEnabled"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_marginTop="@dimen/dimen_10"

android:textSize="@dimen/text_size_16"

android:padding="@dimen/dimen_10"/>

<TextClock

android:id="@+id/tc_timeText_12"

android:layout_width=“match_parent”

android:layout_height=

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值