Android相对布局

Activity布局初步 - 相对布局
1、 相对布局的基本概念
一个控件的位置它决定于它和其他控件的关系,好处:比较灵活;缺点:掌握比较复杂。
2、 相对布局常用属性介绍
这里将这些属性分成4个组,便于理解和记忆。
a)、以下4个属性设置控件与之间的关系和位置

Android相对布局_第1张图片



但是上面4个属性并没有设置各个控件之间是否对齐。
示例1:将控件A放置在控件B的上面,则使用android:layout_above属性,控件布局的效果可以有以下这么两种情况。
1、 控件A与控件B对齐,并且控件A是在控件B的上面。
2、 控件A没有与控件B对齐,但是控件A又确实是在控件B的上面。

Android相对布局_第2张图片

Android相对布局_第3张图片



b)、以下5个属性,设置的是控件与控件之间对齐的方式(是顶部、底部还是左、右对齐)。

Android相对布局_第4张图片



示例2:在示例1的基础上,设置控件A放置在控件B的上面,使用android:layout_above属性,并且控件A的左边边缘与控件B的左边边缘对齐,使用android:layout_alignLeft属性。

Android相对布局_第5张图片



c)、以下4个属性设置控件与父控件之间对齐的方式(是顶部、底部还是左、右对齐)。

Android相对布局_第6张图片



d)、以下4个属性设置控件的方向。

Android相对布局_第7张图片



可以通过组合这些属性来实现各种各样的布局。
注:以上属性和其他更多属性的作用都能在android的帮助文档中找到;

示例3:假如要实现一个如下图这样布局的程序

Android相对布局_第8张图片


如果这样的布局要使用LinearLayout的话会比较麻烦和复杂,
1、 首先需要一个垂直布局方向的LinearLayout,包裹所有的控件;
2、 然后在第一个LinearLayout中嵌套一个垂直方向的LinearLayout,放在上部分,在这个LinearLayout中放入一个TextView和EditText;
3、 最后还是在第一个LinearLayout中嵌套一个水平方向的LinearLayout,放在第一个LinearLayout的下部分,在这个LinearLayout中放入两个Button,并且还得让它们居右。
可参考下图:

Android相对布局_第9张图片



如果使用RelativeLayout会要简单很多,下面为main.xml的代码。

[html] view plain copy print ?
  1. xmlversion="1.0"encoding="utf-8"?>
  2. <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:padding="10px"
  6. >
  7. <TextView
  8. android:id="@+id/lable"
  9. android:text="Typehere:"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. />
  13. <EditText
  14. android:id="@+id/entry"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:background="@android:drawable/editbox_background"
  18. android:layout_below="@id/lable"
  19. />
  20. <Button
  21. android:id="@+id/ok"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="OK"
  25. android:layout_below="@id/entry"
  26. android:layout_marginLeft="10px"
  27. android:layout_alignParentRight="true"
  28. />
  29. <Button
  30. android:id="@+id/cancel"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_toLeftOf="@id/ok"
  34. android:layout_alignTop="@id/ok"
  35. android:text="Cancel"
  36. />
  37. RelativeLayout>

你可能感兴趣的:(Android相对布局)