網頁

2014年7月13日 星期日

6.AbsoluteLayout

AbsoluteLayout是一個非常好學的Layout,但是不太會用,因為如果用絕對定位的方式定義元件的座標的話,不同手機的螢幕大小可能會導致你所設計的AbsoluteLayout排版產生問題,AbsoluteLayout主要有兩個功能:

  • 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>
很簡單吧!!

沒有留言:

張貼留言