- android:layout_x:指定元件的x軸
- android:layout_y:指定元件的y軸
AbsoluteLayout的xml範例:
<AbsoluteLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="10px"
android:layout_y="20px"
android:text="進入" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="380px"
android:layout_y="20px"
android:text="離開" />
</AbsoluteLayout>
很簡單吧!!
沒有留言:
張貼留言