看過上一篇Hello Android夠陽春了吧! 再來一個.
今次要實現的是一個類比時鐘(AnalogClock). AnalogClock是Android的一個小工具(Widget), 這個小工具顯示一個有時針和分針的類比時鐘.
android.widget.AnalogClock
同樣, 這個應用程式也是不需要輸入一句程式碼, 僅僅修改一下佈局文檔便可以完成.
開啟Eclipse, 創建一個新的Android Project.
輸入下面的資料:
Project name: AnalogClock
Application name: AnalogClock
Package name: com.AnalogClock
點選Create Activity: AnalogClock
Min SDK Version: 6 (Android 2.0.1)
點選 Create new project in workspace 和 Use default location
如下修改/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"
/>
<AnalogClock
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
2009年12月17日星期四
訂閱:
發佈留言 (Atom)
沒有留言:
發佈留言