RelativeLayout布局
Posted 一只小阿大嗷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RelativeLayout布局相关的知识,希望对你有一定的参考价值。
RelativeLayout布局是相对布局,如果RelativeLayout中再包含两个RelativeLayout,不会像LinearLayout一样,宽高一样的话会重叠在一起
将红色布局放到右上角
常见属性
根据父容器定位
layout_alignParentLeft 左对齐
layout_alignParentRight 右对齐
layout_alignParentTop 顶部对齐
layout_alignParentBottom 底部对齐
layout_centerHorizontal 水平居中
layout_centerVertical 垂直居中
layout_centerInParent 中间位置
根据兄弟组件定位
layout_toLeftOf 放置于参考组件的左边
layout_toRightOf 放置于参考组件的右边
layout_above 放置于参考组件的上方
layout_below 放置于参考组件的下方
layout_alignTop 对齐参考组件的上边界
layout_alignBottom 对齐参考组件的下边界
layout_alignLeft 对齐参考组件的左边界
layout_alignRight 对齐参考组件的右边界
通用属性
margin 设置组件与父容器的边距
- layout_margin 上下左右偏移
- layout_marginLeft
- layout_marginRight
- layout_marginTop
- layout_marginBotton
padding 设置组件内部元素的边距
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="100dp">
<RelativeLayout
android:id="@+id/relative"
android:layout_centerInParent="true"
android:background="#ff0000"
android:layout_width="100dp"
android:layout_height="100dp"/>
<RelativeLayout
android:layout_toLeftOf="@+id/relative"
android:background="#00ff00"
android:layout_marginTop="100dp"
android:layout_width="100dp"
android:layout_height="100dp"/>
</RelativeLayout>
以上是关于RelativeLayout布局的主要内容,如果未能解决你的问题,请参考以下文章
Android五大布局之一相对布局(RelativeLayout)
§2.2 七大布局------相对布局(RelativeLayout)
如何将视图动态添加到已在 xml 布局中声明的 RelativeLayout?