代码如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextClock
android:id="@+id/tv_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="8dp"
android:layout_gravity="center"
android:format24Hour ="HH:mm"
android:format12Hour ="hh:mm"
android:textColor="@color/txt_00C483"
android:textSize="70dp" />
<TextClock
android:id="@+id/tv_date"
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/txt_00C483"
android:textSize="20dp" />
</RelativeLayout>
注:只能显示当前时间,不能从指定时间开始