《详解Android四大布局》之RelativeLayout布局

时间:2022-12-21 11:32:54
RelativeLayout布局
        RelativeLayout  是一种相对布局,所以在摆放起来比较随意些,相对布局有很多属性,但是并不难记,因为这些属性根据名字都能分析出来是用做什么的,比如下面的 属性:
第一类:属性值为true或false
android:layout_centerHrizontal 水平居中android:layout_centerVertical 垂直居中android:layout_centerInparent 相对于父元素完全居中android:layout_alignParentBottom 贴紧父元素的下边缘android:layout_alignParentLeft 贴紧父元素的左边缘android:layout_alignParentRight 贴紧父元素的右边缘android:layout_alignParentTop 贴紧父元素的上边缘android:layout_alignWithParentIfMissing 如果对应的兄弟元素找不到的话就以父元素做参照物
代码如下:
<?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" >     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentTop="true"        android:layout_alignParentLeft="true"        android:text="Button" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentTop="true"        android:layout_alignParentRight="true"        android:text="Button" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:text="Button" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentBottom="true"        android:layout_alignParentLeft="true"        android:text="Button" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentBottom="true"        android:layout_alignParentRight="true"        android:text="Button" />   </RelativeLayout>
运行效果:
《详解Android四大布局》之RelativeLayout布局


第二类:属性值必须为id的引用名“@id/id-name”
android:layout_below 在某元素的下方android:layout_above 在某元素的的上方android:layout_toLeftOf 在某元素的左边android:layout_toRightOf 在某元素的右边android:layout_alignTop 本元素的上边缘和某元素的的上边缘对齐android:layout_alignLeft 本元素的左边缘和某元素的的左边缘对齐android:layout_alignBottom 本元素的下边缘和某元素的的下边缘对齐android:layout_alignRight 本元素的右边缘和某元素的的右边缘对齐
代码:
<?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" >     <Button        android:id="@+id/button3"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_centerInParent="true"        android:text="3" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_toLeftOf="@id/button3"        android:layout_above="@id/button3"        android:text="1" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_toRightOf="@id/button3"        android:layout_above="@id/button3"        android:text="2" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_toLeftOf="@id/button3"        android:layout_below="@id/button3"        android:text="4" />     <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_toRightOf="@id/button3"        android:layout_below="@id/button3"        android:text="5" />  </RelativeLayout>

运行后效果:
《详解Android四大布局》之RelativeLayout布局

第三类:属性值为具体的像素值,如30dip,40px
android:layout_marginBottom 离某元素底边缘的距离android:layout_marginLeft 离某元素左边缘的距离android:layout_marginRight 离某元素右边缘的距离android:layout_marginTop 离某元素上边缘的距离
代码:
<?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" >  <Button  android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="200dip" android:text="按钮1" />  <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="200dip" android:layout_marginLeft="200dip" android:text="按钮2" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="300dip" android:layout_marginLeft="200dip" android:text="按钮3" /> </RelativeLayout>
运行效果:
《详解Android四大布局》之RelativeLayout布局