什么是RelativeLayout

RelativeLayout顾名思义,相对布局,在这个容器内部的子元素们可以使用彼此之间的相对位置或者和容器间的相对位置来进行定位。

注意:不能在RelativeLayout容器本身和他的子元素之间产生循环依赖。


与RelativeLayout相关的布局属性
android:layout_above 将该控件置于给定ID的控件之上
android:layout_below 将该控件的置于给定ID控件之下
android:layout_toLeftOf 将该控件置于给定ID的控件之左
android:layout_toRightOf 将该控件置于给定ID的控件之右

android:layout_alignBaseline 该控件基线对齐给定ID的基线
android:layout_alignBottom 该控件于给定ID的控件底部对齐
android:layout_alignLeft 该控件于给定ID的控件左对齐
android:layout_alignRight 该控件于给定ID的控件右对齐
android:layout_alignTop 该控件于给定ID的控件顶对齐

android:layout_alignParentLeft 如果为True,该控件位于父控件的左部
android:layout_alignParentRight 如果为True,该控件位于父控件的右部
android:layout_alignParentTop 如果为True,该控件位于父控件的顶部
android:layout_alignParentBottom 如果为True,该控件位于父控件的底部

android:layout_centerHorizontal 如果为True,该控件将被置于水平方向的中央
android:layout_centerInParent 如为Ture,该控件将被置于父控件水平方向和垂直方向
android:layout_centerVertical 如果为True,该控件将被置于垂直方向的中央


下面来实现这样一个简单的效果


先来分析一下这个布局

首先是一个test1

    <TextView        android:id="@+id/tv1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="test1"        android:background="#FF0000" />

然后,test2在test1的右边

    <TextView        android:id="@+id/tv2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="test22"        android:background="#00FF00"        android:layout_toRightOf="@id/tv1" />

test3在test1的下边,并且和test2右对齐

    <TextView        android:id="@+id/tv3"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="test333"        android:background="#0000FF"        android:layout_below="@id/tv1"        android:layout_alignRight="@id/tv2" />

test4在父框架的底部

    <TextView        android:id="@+id/tv4"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="test4444"        android:background="#FFFF00"        android:layout_alignParentBottom="true" />

test5在父框架的水平垂直中央

    <TextView        android:id="@+id/tv5"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="test55555"        android:background="#FF00FF"        android:layout_centerInParent="true" />

test6在父框架的底部右边

    <TextView        android:id="@+id/tv6"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="test666666"        android:background="#00FFFF"        android:layout_alignParentRight="true"        android:layout_alignParentBottom="true" />

好了,关于Android之RelativeLayout相对布局就简单尝试到这里了,以后我们在开发布局过程中可以根据需要选择设置适当的属性,谢谢!


更多相关文章

  1. Android(安卓)窗口管理
  2. 系出名门Android(8) - 控件(View)之TextSwitcher, Gallery, Imag
  3. Android(安卓)菜单(OptionMenu)大全 建立你自己的菜单
  4. android:contentDescription 的用途
  5. Android(安卓)开发学习小结(七)
  6. Android布局--相对布局,RTL,用代码实现布局
  7. 修改android statusbar颜色
  8. Relativelayout
  9. android GridView item中组件获取焦点

随机推荐

  1. Android图片压缩小结
  2. android 可拖动排序的源码示例
  3. android imageview围绕中心旋转动画
  4. NFC 基础
  5. Android(安卓)Activity process(进程设置)
  6. Android屏幕相关知识
  7. 探索 Android(安卓)系统启动 - 当我们按
  8. Android中Notification的小发现
  9. Android实现截屏与截长图功能
  10. 由android:process引发的内存限制的问题