相对布局中的视图组件是按相互之间的相对位置来确定的, 并不是线性布局中的必须

按行或按列单个显示。示例布局文件如下:

main.xml

<? xml version = "1.0"encoding = "utf-8" ?>< RelativeLayoutxmlns:android ="http://schemas.android.com/apk/res/android"android:layout_width ="fill_parent"android:layout_height = "fill_parent"> < TextViewandroid:layout_width ="fill_parent"android:layout_height ="wrap_content"android:text ="@string/name_text"android:id = "@+id/text" />< EditTextandroid:layout_width ="fill_parent"android:layout_height ="wrap_content"android:layout_below = "@id/text"android:id = "@+id/edit" />< Buttonandroid:layout_width ="wrap_content"android:layout_height ="wrap_content"android:text ="@string/cancle_button"android:layout_alignParentRight ="true"android:layout_below = "@id/edit"android:id = "@+id/cancle" />< Buttonandroid:layout_width ="wrap_content"android:layout_height ="wrap_content"android:layout_toLeftOf ="@id/cancle"android:layout_alignTop ="@id/cancle"android:text ="@string/ok_button" /></ RelativeLayout >

说明:

android:layout_below="@id/text" :将该元素放到 id 为 text 的元素的下面

android:layout_toLeftOf="@id/ok" :放到 id 为 ok 的元素左边

android:layout_alignTop="@id/ok" :对齐 id 为 ok 的元素的顶部

还有很多关于相对位置的字段,希望大家能够自己去发现

界面效果如图:


案例二:梅花效果

问题:利用相对布局实现下面的效果


案例分析:

我们可以从途中看出,四周的方框的角都与中间的方框相连,而且呈现出X字样.试想,中间的是不是有什么特殊含义?

好,养我们做一个假设:假设中间的方框为相对对象,那么各个方框如何表示呢?拿左上角的方框为例,它的位置是:既中间方框的上面又是中间方框的左边.好,那么其他的是不是可以同样再这样表示呢?答案是肯定的.按照这个思路,我们试着把代码写出来:

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" >  <TextView    android:id="@+id/center"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_centerInParent="true"    android:background="@drawable/meihua"/>  <TextView    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_above="@id/center"    android:layout_toLeftOf="@id/center"    android:background="@drawable/meihua"/>  <TextView    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_above="@id/center"    android:layout_toRightOf="@id/center"    android:background="@drawable/meihua"/>  <TextView    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_below="@id/center"    android:layout_toLeftOf="@id/center"    android:background="@drawable/meihua"/>  <TextView    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_below="@id/center"    android:layout_toRightOf="@id/center"    android:background="@drawable/meihua"/></RelativeLayout>

运行图为:


android:layout_centerInParent="true" 图片垂直水平居中

android:background="@drawable/meihua"将该元素的id放到background下,"meihua"是我拷入的图片文件





更多相关文章

  1. 系出名门Android(2) - 布局(Layout)和菜单(Menu)
  2. 浅谈Android五大布局
  3. gravity和android:layout_gravity区别
  4. 浅谈Android五大布局
  5. Android中常用的五种布局方式:FrameLayout
  6. Android(安卓)五大布局
  7. Android商城购物车页面实现和逻辑实现
  8. 浅谈Android五大布局
  9. Android(安卓)API Demos学习(1) - Hello World

随机推荐

  1. android连续点击出现多个Activity界面
  2. Android Hierarchy Viewer
  3. 华软项目总结
  4. 关于android
  5. Android中画图
  6. JS调用Android里面的方法,Android调用JS里
  7. 服务(Service)
  8. android四层框架
  9. Android主流三方库源码分析(四、深入理解G
  10. Android(安卓)数字证书详解