【android學習筆記】關於相對佈局RelativeLayout的各種屬性介紹

RelativeLayout相對佈局是個人覺得在android佈局中比較常用且好用的一個,當然如果想讓佈局更漂亮是需要多種佈局混合搭建的,這裏就需要更深入的學習了,在這隻介紹下有關相對佈局的東西。

相對於兄弟元素
android:layout_below="@id/aaa":在指定View的下方
android:layout_above="@id/xxx":在指定View的上方
android:layout_toLeftOf="@id/bbb":在指定View的左邊
android:layout_toRightOf="@id/cccc":在指定View的右邊
相對於父元素
android:layout_alignParentLeft="true":在父元素內左邊
android:layout_alignParentRight="true":在父元素內右邊
android:layout_alignParentTop="true":在父元素內頂部
android:layout_alignParentBottom="true":在父元素內底部
對齊方式
android:layout_centerInParent="true":居中佈局
android:layout_centerVertical="true":水平居中佈局
android:layout_centerHorizontal="true":垂直居中佈局
android:layout_alignTop="@id/xxx":與指定View的上邊界一致
android:layout_alignBottom="@id/xxx":與指定View下邊界一致
android:layout_alignLeft="@id/xxx":與指定View的左邊界一致
android:layout_alignRight="@id/xxx":與指定View的右邊界一致
間隔
android:layout_marginBottom=""; 離某元素底邊緣的距離
android:layout_marginLeft=""; 離某元素左邊緣的距離
android:layout_marginRight ="";離某元素右邊緣的距離
android:layout_marginTop=""; 離某元素上邊緣的距離
android:layout_paddingBottom=""; 離父元素底邊緣的距離
android:layout_paddingLeft=""; 離父元素左邊緣的距離
android:layout_paddingRight ="";離父元素右邊緣的距離
android:layout_paddingTop=""; 離父元素上邊緣的距離

關於margin 與padding 的區別問題
padding是站在父view的角度描述問題,是自己的內容與其父控件的邊之間的距離。margin則是站在自己的角度描述問題,自己與旁邊的某個組件的距離,如果同一級只有一個view,那麼它的效果基本上就和padding一樣了。
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章