Android-帧布局FrameLayout
组件的默认位置都是左上角,组件之间可以重叠。像千层饼一样,一层压着一层 可以设置上下左右的对齐、水平垂直居中、设置方式与线性布局相似
属性 | 可选值 | 说明 |
layout_gravity | center/center_vertical/center_horizontal | 组件相对父容器的位置 |
layout_marginLeft | 具体的数值 | 左侧外间距 |
layout_marginTop | 具体的数值 | 上侧外间距 |
layout_marginRight | 具体的数值 | 右侧外间距 |
layout_marginBottom | 具体的数值 | 下侧外间距 |
接下来代码演示,新建文件,命名com_framelayout
以按钮为例子,在这个结构中,最下面的button实在最上面的,一层压着一层
通过以下属性即可设置外间距
layout_marginLeft |
layout_marginTop |
layout_marginRight |
layout_marginBottom |