跳到主要内容

RelativeLayout绝对布局

说明

相对布局是通过相对定位的方式制定控件位置,即以其他的控件或父容器为参照物,摆放控件位置。在设计相对布局时要遵循控件之间的依赖关系,后放入的控件的位置要依赖于先放入的控件。

使用示例

 <RelativeLayout
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>

属性说明

公有属性

请参考 公有属性

私有属性

属性名说明可选值
layout_weight子元素权重数字
当父级为LinearLayout的时候,子控件可以设置权重
gravity内部的控件对齐方式用法参考
top
bottom
left
right
center_vertical
fill_vertical
center_horizontal
fill_horizontal
center
fill
clip_vertical
clip_horizontal