RelativeLayout

1.屬性值爲具體像素值的屬性:20dp
android:layout_marginBottom 離某元素底邊緣的距離
android:layout_marginLeft 離某元素左邊緣的距離
android:layout_marginStart 同上
android:layout_marginRight 離某元素右邊緣的距離
android:layout_marginEnd 同上
android:layout_marginTop 離某元素上邊緣的距離

2 . 屬性值爲true或是false的屬性
android:layout_alignParentBottom控制該組件是否和佈局管理器底端對齊。
android:layout_alignParentEnd控制該組件是否和佈局管理器末端對齊。
android:layout_alignParentLeft 控制該組件是否和佈局管理器左邊對齊
android:layout_alignParentRight控制該組件是否和佈局管理器右邊對齊
android:layout_alignParentStart控制該組件是否和佈局管理器開始對齊
android:layout_alignParentTop控制該組件是否和佈局管理器頂部對齊
android:layout_alignWithParentIfMissing 如果對應的兄弟元素找不到的話就以父元素做參照物

3.屬性值爲其他組件ID的屬性
android:layout_above本組件在某組件的上方
android:layout_alignBaseline本組件和某組件的基線對齊。
android:layout_alignBottom 本組件的下邊緣和某組件的的下邊緣對齊
android:layout_alignEnd本組件的末端和某組件末端對齊
android:layout_alignRight 本組件的右邊緣和某組件的的右邊緣對齊
android:layout_alignLeft本組件左邊緣和某組件左邊緣對齊
android:layout_alignStart本組件的開始端和某組件開始端對齊
android:layout_alignTop 本組件的頂部和某組件的的頂部對齊
android:layout_below 本組件在某組件的下方

android:layout_toEndOf本組件在某組件末端
android:layout_toLeftOf本組件在某組件的左邊
android:layout_toRightOf本組件在某組件的右邊
android:layout_alignLeft 本組件在某組件開始端

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章