要讓TextClock顯示當前的日期和時間,可以通過設置TextClock的format屬性來顯示所需的日期和時間格式。例如,可以設置format為"yyyy-MM-dd HH:mm:ss"來顯示當前的年月日時分秒。具體步驟如下:
<TextClock
android:id="@+id/textClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:format24Hour="yyyy-MM-dd HH:mm:ss"
android:format12Hour="yyyy-MM-dd hh:mm:ss a" />
TextClock textClock = findViewById(R.id.textClock);
textClock.setFormat12Hour("yyyy-MM-dd hh:mm:ss a");
textClock.setFormat24Hour("yyyy-MM-dd HH:mm:ss");
這樣就可以讓TextClock顯示當前的日期和時間。