要在TextClock中顯示秒數,可以使用format屬性設置時間格式為包含秒數的格式。例如,設置format為"hh:mm:ss a"可以顯示小時、分鐘和秒數。示例代碼如下:
<TextClock
android:id="@+id/textClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format24Hour="hh:mm:ss"
android:format12Hour="hh:mm:ss a" />
在這個示例中,TextClock會顯示當前時間的小時、分鐘和秒數,同時根據設備的設置顯示上午或下午。