要創(chuàng)建一個時鐘應(yīng)用,首先需要在布局文件中添加一個TextClock控件來顯示時間??梢园凑找韵虏襟E進(jìn)行:
<TextClock
android:id="@+id/textClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp"
android:format12Hour="hh:mm:ss a"
android:format24Hour="kk:mm:ss"
android:gravity="center"
android:padding="16dp"/>
TextClock textClock = findViewById(R.id.textClock);
textClock.setFormat12Hour("hh:mm:ss a");
textClock.setFormat24Hour("kk:mm:ss");
這樣就可以用TextClock控件創(chuàng)建一個簡單的時鐘應(yīng)用了??梢愿鶕?jù)需求對TextClock控件進(jìn)行更多的自定義設(shè)置,比如字體大小、顏色、格式等。