2009年12月18日星期五

DigitalClock(數字鐘) Widget - android.widget.DigitalClock

有夠陽春的AnalogClock, 當然有相同陽春的DigitalClock.

DigitalClock(數字鐘)是以數字形式顯示時:分:秒.

Screenshot of Android Emulator with a DigitalClock

只要將上一篇的AnalogClock轉為DigitalClock, 修改/res/layout/main.xml便完成了.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>

<DigitalClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</LinearLayout>





沒有留言:

發佈留言