要创建一个时钟应用,首先需要在布局文件中添加一个TextClock控件来显示时间。可以按照以下步骤进行:
<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控件创建一个简单的时钟应用了。可以根据需求对TextClock控件进行更多的自定义设置,比如字体大小、颜色、格式等。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 怎么改变TextClock控件的文字大小