RelativeLayout的屬性使用

2021-07-23 01:58:52 字數 1192 閱讀 6417

android:layout_above 將該控制項的底部置於給定id的控制項之上;

android:layout_below 將該控制項的底部置於給定id的控制項之下;

android:layout_toleftof    將該控制項的右邊緣與給定id的控制項左邊緣對齊;

android:layout_torightof  將該控制項的左邊緣與給定id的控制項右邊緣對齊;

android:layout_alignbaseline  將該控制項的baseline與給定id的baseline對齊;

android:layout_aligntop        將該控制項的頂部邊緣與給定id的頂部邊緣對齊;

android:layout_alignbottom   將該控制項的底部邊緣與給定id的底部邊緣對齊;

android:layout_alignleft        將該控制項的左邊緣與給定id的左邊緣對齊;

android:layout_alignright      將該控制項的右邊緣與給定id的右邊緣對齊;

// 相對于父元件

android:layout_alignparenttop      如果為true,將該控制項的頂部與其父控制項的頂部對齊;

android:layout_alignparentbottom 如果為true,將該控制項的底部與其父控制項的底部對齊;

android:layout_alignparentleft      如果為true,將該控制項的左部與其父控制項的左部對齊;

android:layout_alignparentright    如果為true,將該控制項的右部與其父控制項的右部對齊;

// 居中

android:layout_centerhorizontal 如果為true,將該控制項的置於水平居中;

android:layout_centervertical     如果為true,將該控制項的置於垂直居中;

android:layout_centerinparent   如果為true,將該控制項的置於父控制項的**;

// 指定移動畫素

android:layout_margintop      上偏移的值;

android:layout_marginbottom 下偏移的值;

android:layout_marginleft   左偏移的值;

android:layout_marginright   右偏移的值;

RelativeLayout的常用屬性

android layout centerhrizontal 水平居中 android layout centervertical 垂直居中 android layout centerinparent 相對于父控制項完全居中 android layout alignparentbottom 貼緊父控...

RelativeLayout相對布局

relativelayout相對布局是個人覺得在android布局中比較常用且好用的乙個,當然如果想讓布局更漂亮是需要多種布局混合搭建的,這裡就需要更深入的學習了,在這只介紹下有關相對布局的東西。相對於兄弟元素 android layout below id aaa 在指定view的下方 andro...

RelativeLayout 重要屬性

第一類 屬性值為true或false android layout centerhrizontal 水平居中 android layout centervertical 垂直居中 android layout centerinparent 相對于父元素完全居中 android layout alig...