RelativeLayout是相对布局控件:以控件之间相对位置或相对父容器位置进行排列。

相对布局常用属性:

子类控件相对子类控件:值是另外一个控件的id

android:layout_above———-位于给定DI控件之上
android:layout_below ———-位于给定DI控件之下

android:layout_toLeftOf ——-位于给定控件左边
android:layout_toRightOf ——位于给定控件右边

android:layout_alignLeft ——-左边与给定ID控件的左边对齐
android:layout_alignRight ——右边与给定ID控件的右边对齐
android:layout_alignTop ——-上边与给定ID控件的上边对齐
android:layout_alignBottom —-底边与给定ID控件的底边对齐

android:layout_alignBaseline—-对齐到控件基准线

相对父容器,值是true或false
android:layout_alignParentLeft ——相对于父靠左
android:layout_alignParentTop——-相对于父靠上
android:layout_alignParentRight——相对于父靠右
android:layout_alignParentBottom —相对于父靠下

android:layout_centerInParent=”true” ——-相对于父即垂直又水平居中
android:layout_centerHorizontal=”true” —–相对于父即水平居中
android:layout_centerVertical=”true” ——–相对于父即处置居中

相对于父容器位置:

android:layout_margin=”10dp”
android:layout_marginLeft
android:layout_marginRight
android:layout_marginTop
android:layout_marginBottom

版本4.2以上相对布局新属性

android:layout_alignStart———————将控件对齐给定ID控件的头部
android:layout_alignEnd———————-将控件对齐给定ID控件的尾部
android:layout_alignParentStart————–将控件对齐到父控件的头部
android:layout_alignParentEnd—————将控件对齐到父控件的尾部

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.dezai.relativelayouttest.MainActivity">    <TextView  android:id="@+id/view01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/leaf" android:layout_centerInParent="true" />    <TextView  android:id="@+id/view02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/leaf" android:layout_above="@+id/view01" android:layout_alignLeft="@+id/view01" />    <TextView  android:id="@+id/view03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/leaf" android:layout_below="@+id/view01" android:layout_alignLeft="@+id/view01" />    <TextView  android:id="@+id/view04" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/leaf" android:layout_toLeftOf="@+id/view01" android:layout_alignTop="@+id/view01" />    <TextView  android:id="@+id/view05" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/leaf" android:layout_toRightOf="@+id/view01" android:layout_alignTop="@+id/view01" /></RelativeLayout>

加载图片:

更多相关文章

  1. 【Android】如何让跑马灯跑起来-控件请求焦点
  2. Android控件GridView的使用
  3. android 相对布局中的 控件布局
  4. Android中自定义switch控件样式
  5. android中listview控件覆盖了其它控件使下面的其它控件不显示
  6. 自定义控件 - 圆形缓冲进度条
  7. Android支持展开/收缩功能的列表控件
  8. Android 自定义控件之图片裁剪
  9. Android 控件的显示和隐藏

随机推荐

  1. 在contenteditable中的占位符—焦点事件
  2. CasperJs和Jquery用链式选择
  3. 当函数在单独的PHP文件中定义时,调用JavaS
  4. 用javascript 禁止右键,禁止复制,禁止粘
  5. hzjs颠覆jquery,按照中国人思维开发的最简
  6. 百度搜索功能
  7. 如何检查不包含提交按钮的HTML5表单的有
  8. 为什么不调用我的jQuery.get()回调?
  9. 如何在我的页面上以漂亮的格式显示JSON对
  10. 获取Backbone Model实例的模型/类名