相对布局及梅花案例
一、相对布局中子控件的属性案例
相对布局RelativeLayout
相对布局是通过相对定位的方式指定子控件的位置,在XML中定义RelativeLayout时使用标签,定义格式如下:
1.<!--设置当前控件是否位于父布局的中央位置对齐为(true)不对齐为(false)-->
android:layout_centerInParent="true"
2.<!--设置当前控件是否位于父布局的垂直居中位置-->
android:layout_centerVertical="true"
3.<!--设置当前控件是否位于父控件水平居中位置-->
android:layout_centerHorizontal="true"
4.<!--设置当前控件是否位于某控件的上方-->
android:layout_above="@+id/"
5.<!--设置当前控件是否位于某控件的下方-->
android:layout_below="@+id/"
6.<!--设置当前控件是否位于某控件的左侧-->
android:layout_toLeftOf="@+id/"
7.<!--设置当前控件是否位于某控件的右侧-->
android:layout_toRightOf="@+id/"
8.<!--设置当前控件是