時間分為指針和數字兩種,如果Android應用中用到時鐘,僅需要使用指針時鐘AnlogClock與數字時鐘DigitalClock即可,不需要編程。
當然如果你對系統的默認顯示效果不滿意,譬如你想要一個帶日期、時間的顯示,另當別論。
一、設計界面
1、打開“res/layout/activity_main.xml”文件。
從工具欄向activity拖出1個AnlogClock指針時鐘與DigitalClock數字時鐘。
2、打開activity_main.xml文件。
代碼如下:
[html] view plain copy
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
-
- <DigitalClock
- android:id="@+id/digitalClock1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="DigitalClock" />
-
- <AnalogClock
- android:id="@+id/analogClock1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
-