Android RelativeLayout相对布局属性包括以下几种:
android:layout_alignParentTop:将视图的顶部边与父布局的顶部边对齐。
android:layout_alignParentBottom:将视图的底部边与父布局的底部边对齐。
android:layout_alignParentLeft:将视图的左边边与父布局的左边边对齐。
android:layout_alignParentRight:将视图的右边边与父布局的右边边对齐。
android:layout_centerHorizontal:将视图的水平中心与父布局的水平中心对齐。
android:layout_centerVertical:将视图的垂直中心与父布局的垂直中心对齐。
android:layout_centerInParent:将视图的中心点与父布局的中心点对齐。
android:layout_above:将视图的底部边与指定视图的顶部边对齐。
android:layout_below:将视图的顶部边与指定视图的底部边对齐。
android:layout_toLeftOf:将视图的右边边与指定视图的左边边对齐。
android:layout_toRightOf:将视图的左边边与指定视图的右边边对齐。
这些属性可以通过相对布局中的子视图的layout_alignParent属性来指定相对于父视图的位置,或者通过layout_toLeftOf、layout_toRightOf等属性来指定相对于其他视图的位置。