軟體介面的方便性是非常重要的, 但在android中要刻一個介面卻得用不大友善的xml, 在xml中描述一個按鈕的屬性與法大概長這樣:
< Button >
android:id=”@+id/widget30″
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:text=”Button”
android:layout_x=”131px”
android:layout_y=”125px”
>
</Button >
恩… 看不大懂. 因此 http://droiddraw.org/ 提供了一個好用的小軟體, 我們只要把我們要的元件拉到左邊的工作區之後就會在右下角產生對應的xml語法, 再把這一整段語法 copy 到您的 android 開發環境就可以了。