2014年1月12日

RelativeLayout

RelativeLayout 相對位置版面配置


XML宣告
<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
 </RelativeLayout>


屬性說明
android:layout_width該屬性定義元件的寬度
android:layout_height該屬性定義元件的高度,可使用屬性值同上
android:text該屬性可設定文字顯示在元件上
android:layout_above將此元件置於指定元件上方
android:layout_below將此元件置於指定元件下方
android:layout_toLeftOf將此元件置於指定元件左方
android:layout_toRightOf將此元件置於指定元件右方
android:layout_alignParentTop將此元件對齊於佈局畫面上邊線
android:layout_alignParentRight將此元件對齊於佈局畫面右邊線
android:layout_alignParentLeft將此元件對齊於佈局畫面左邊線
android:layout_alignParentBottom將此元件對齊於佈局畫面底線


程式碼宣告
RelativeLayout layout;
RelativeLayout.LayoutParams params;


layout = new RelativeLayout(this);
params = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT);
layout.setLayoutParams(params);


沒有留言:

張貼留言