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);
沒有留言:
張貼留言