我把设置相对布局的属性分成下面几类
一、相对于父容器的布局定义属性
即指定widget在container的相对位置,包括:
android:layout_alignParentTop,
android:layout_alignParentBottom,
android:layout_alignParentLeft,
android:layout_alignParentRight,
android:layout_centerHorizontal,
android:layout_centerVertical,
android:layout_centerInParent,
他们的值是false|true。
二、相对于其他控件的位置
相对其他widget的位置,可以使用:
android:layout_above,
android:layout_below,
android:layout_toLeftOf,
android:layout_toRightOf。
三、与其他控件的对齐关系
与其他widget位置对齐,可以使用:
android:layout_alignTop,
android:layout_alignBottom,
android:layout_alignLeft,
android:layout_alignRigh,
android:layout_alignBaseline, 最后一个通常用于label的对齐。与其他非label,比如TextEdit对齐时,有时候会产生怪异的现象。