继昨天,又了解了绝对布局,很想和大家分享我学到的东西,也许很简单,但学到东西就是好的。
首先我们来了解一下RelativeLayout相对布局:
子控件之间的关系:
属性名称 | 描述 |
android:layout_above | 将该控件的底部置于给定id的控件之上 |
android:layout_below | 将该控件的顶部置于给定id的控件之下 |
android:layout_toLeftOf | 将该控件置于给定id的控件的左边 |
android:layout_toRightOf | 将该控件置于给定id的控件的右边 |
android:layout_alignBaseline | 将该控件的baseline与给定id的控件的baseline对齐 |
android:layout_alignTop | 将该控件的顶部与给定id控件的顶部对齐(可选值为true和false) |
android:layout_alignBottom | 将该控件的底部与给定id控件的底部对齐(同上) |
android:layout_alignLeft | 将该控件的左边缘与给定id控件的左边缘对齐(同上) |
android:layout_alignRigh | 将该控件的右边缘与给定id控件的右边缘对齐(同上) |
备注:某个控件的id,如:android:layout_above=“@id/sa”;sa为一个Button的id。
子控件与父控件之间的关系:
属性名称 | 描述 |
android:layout_centerHorizontal | 将该控件置于父控件水平方向的中间(可选值为true和false) |
android:layout_centerVertvcal | 将该控件置于父控件垂直方向的中间(可选值为true和false) |
android:layout_centerInParent | 将该控件置于父控件垂直方向和水平方向的中间(可选值为true和false) |
android:alignParenTop | 将该控件的顶部与父控件的顶部对齐(可选值为true和false) |
android:alignParenBottom | 将该控件的底部与父控件的底部对齐(可选值为true和false) |
android:alignParenLeft | 将该控件的左边缘与父控件的左边缘对齐(可选值为true和false) |
android:alignParenRight | 将该控件的右边缘与父控件的右边缘对齐(可选值为true和false) |
下面给大家看看我编写的代码以及配套图片:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="66dp"
android:layout_height="66dp"
android:text="read"
android:background="#ff0000"
android:textSize="30sp"
android:gravity="center"/>
<TextView
android:layout_width="66dp"
android:layout_height="66dp"
android:text="orange"
android:background="#ffa600"
android:layout_centerHorizontal="true"/>
<TextView
android:layout_width="66dp"
android:layout_height="66dp"
android:text="yellow"
android:background="#ffff00"
android:layout_alignParentRight="true"/>
<TextView
android:layout_width="66dp"
android:layout_height="66dp"
android:text="blue"
android:background="#0000ff"
android:gravity="center"
android:layout_centerInParent="true"
android:id="@+id/tv_main_blue"
android:layout_margin="10dp"/>
<TextView
android:layout_width="66dp"
android:layout_height="66dp"
android:background="#00ff00"
android:text="gren"
android:layout_toLeftOf="@id/tv_main_blue"
android:layout_centerVertical="true"
/>
<TextView
android:layout_width="66dp"
android:layout_height="66dp"
android:text="indigo"
android:background="#4a0084"
android:layout_toRightOf="@id/tv_main_blue"
android:layout_alignBottom="@id/tv_main_blue"/>
<TextView
android:layout_width="match_parent"
android:layout_height="66dp"
android:text="violet"
android:background="#ef82ef"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
以上就是RelativeLayout相对布局的常用属性,如果纰漏
望读者指出,O(∩_∩)O谢谢!