Android 五大布局

文章分类:移动开发 Android对用五大布局对象,它们分别是FrameLayout(框架布局),LinearLayout (线性布局),AbsoluteLayout(绝对布局),RelativeLayout(相对布局),TableLayout(表格布局).

FrameLayout:

FrameLayout是最简单的一个布局对象。它被定制为你屏幕上的一个空白备用区域,之后你可以在其中填充一个单一对象 — 比如,一张你要发布的图片。所有的子元素将会固定在屏幕的左上角;你不能为FrameLayout中的一个子元素指定一个位置。后一个子元素将会直接在前 一个子元素之上进行覆盖填充,把它们部份或全部挡住(除非后一个子元素是透明的)。

我们看一下效果图:


其中Main.xml 代码如下:

Java代码
  1. <?xmlversion= "1.0" encoding= "utf-8" ?>
  2. <FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. >
  6. <!--我们在这里加了一个Button按钮-->
  7. <Button
  8. android:text="button"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. />
  12. <TextView
  13. android:text="textview"
  14. android:textColor="#0000ff"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. />
  18. </FrameLayout>



LinearLayout:

LinearLayout以你为它设置的垂直或水平的属性值,来排列所有的子元素。所有的子元素都被堆放在其它元素之后,因此一个垂直列表的每一 行只会有一个元素,而不管他们有多宽,而一个水平列表将会只有一个行高(高度为最高子元素的高度加上边框高度)。LinearLayout保持子元素之间 的间隔以及互相对齐(相对一个元素的右对齐、中间对齐或者左对齐)。

LinearLayout还支持为单独的子元素指定weight 。好处就是允许子元素可以填充屏幕上的剩余空间。这也避免了在一个大屏幕中,一串小对象挤成一堆的情况,而是允许他们放大填充空白。子元素指定一个 weight 值,剩余的空间就会按这些子元素指定的weight 比例分配给这些子元素。默认的 weight 值为0。例如,如果有三个文本框,其中两个指定了weight 值为1,那么,这两个文本框将等比例地放大,并填满剩余的空间,而第三个文本框不会放大。

我们看一下效果图:


其中Main.xm l代码如下:

Java代码
  1. <?xmlversion= "1.0" encoding= "utf-8" ?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent" >
  6. <LinearLayout
  7. android:orientation="vertical"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:layout_weight="2" >
  11. <TextView
  12. android:text="WelcometoMrWei'sblog"
  13. android:textSize="15pt"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. />
  17. </LinearLayout>
  18. <LinearLayout
  19. android:orientation="horizontal"
  20. android:layout_width="fill_parent"
  21. android:layout_height="fill_parent"
  22. android:layout_weight="1" >
  23. <TextView
  24. android:text="red"
  25. android:gravity="center_horizontal" //这里字水平居中
  26. android:background="#aa0000"
  27. android:layout_width="wrap_content"
  28. android:layout_height="fill_parent"
  29. android:layout_weight="1" />
  30. <TextView
  31. android:text="green"
  32. android:gravity="center_horizontal"
  33. android:background="#00aa00"
  34. android:layout_width="wrap_content"
  35. android:layout_height="fill_parent"
  36. android:layout_weight="1" />
  37. </LinearLayout>
  38. </LinearLayout>




RelativeLayout:

RelativeLayout 允许子元素指定他们相对于其它元素或父元素的位置(通过ID 指定)。因此,你可以以右对齐,或上下,或置于屏幕中央的形式来排列两个元素。元素按顺序排列,因此如果第一个元素在屏幕的中央,那么相对于这个元素的其 它元素将以屏幕中央的相对位置来排列。如果使用XML 来指定这个 layout ,在你定义它之前,被关联的元素必须定义。

让我们看一下效果图:


其中Main.xml 代码如下:

Java代码
  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="fill_parent" >
  5. <TextView
  6. android:id="@+id/label"
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="WelcometoMrWei'sblog:" />
  10. <EditText
  11. android:id="@+id/entry"
  12. android:layout_width="fill_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_below="@id/label" />
  15. <Button
  16. android:id="@+id/ok"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_below="@id/entry"
  20. android:layout_alignParentRight="true"
  21. android:layout_marginLeft="10dip"
  22. android:text="OK" />
  23. <Button
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_toLeftOf="@id/ok"
  27. android:layout_alignTop="@id/ok"
  28. android:text="Cancel" />
  29. </RelativeLayout>



TableLayout:

TableLayout 将子元素的位置分配到行或列中。一个TableLayout 由许多的TableRow 组成,每个TableRow 都会定义一个 row (事实上,你可以定义其它的子对象,这在下面会解释到)。TableLayout 容器不会显示row 、cloumns 或cell 的边框线。每个 row 拥有0个或多个的cell ;每个cell 拥有一个View 对象。表格由列和行组成许多的单元格。表格允许单元格为空。单元格不能跨列,这与HTML 中的不一样。

下面让我们看一下效果图:

其中Main.xml 代码如下:

Java代码
  1. <?xmlversion= "1.0" encoding= "utf-8" ?>
  2. <TableLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent" android:layout_height= "fill_parent"
  4. android:stretchColumns="1" >
  5. <TableRow>
  6. <TextViewandroid:layout_column="1" android:text= "Open..." />
  7. <TextViewandroid:text="Ctrl-O" android:gravity= "right" />
  8. </TableRow>
  9. <TableRow>
  10. <TextViewandroid:layout_column="1" android:text= "Save..." />
  11. <TextViewandroid:text="Ctrl-S" android:gravity= "right" />
  12. </TableRow>
  13. <Viewandroid:layout_height="2dip" android:background= "#FF909090" /> //这里是上图中的分隔线
  14. <TableRow>
  15. <TextViewandroid:text="X" />
  16. <TextViewandroid:text="Export..." />
  17. <TextViewandroid:text="Ctrl-E" android:gravity= "right" />
  18. </TableRow>
  19. <Viewandroid:layout_height="2dip" android:background= "#FF909090" />
  20. <TableRow>
  21. <TextViewandroid:layout_column="1" android:text= "Quit"
  22. android:padding="3dip" />
  23. </TableRow>
  24. </TableLayout>



AbsoluteLayout:


AbsoluteLayout 可以让子元素指定准确的x/y坐标值,并显示在屏幕上。(0, 0)为左上角,当向下或向右移动时,坐标值将变大。AbsoluteLayout 没有页边框,允许元素之间互相重叠(尽管不推荐)。我们通常不推荐使用 AbsoluteLayout ,除非你有正当理由要使用它,因为它使界面代码太过刚性,以至于在不同的设备上可能不能很好地工作。
我们看一下效果图:


其中Main.xm l代码如下:

Java代码
  1. <?xmlversion= "1.0" encoding= "utf-8" ?>
  2. <AbsoluteLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. <EditText
  8. android:text="WelcometoMrWei'sblog"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. />
  12. <Button
  13. android:layout_x="250px" //设置按钮的X坐标
  14. android:layout_y="40px" //设置按钮的Y坐标
  15. android:layout_width="70px" //设置按钮的宽度
  16. android:layout_height="wrap_content"
  17. android:text="Button"
  18. />
  19. </AbsoluteLayout>

更多相关文章

  1. 在EeePC上运行Android!(转)(也是代码下载配置编译的流程!)
  2. 【Android】AS环境下,在布局中使用android:gravity="left/right"
  3. Android学习-五布局之相对布局
  4. -Android各版本系统源代码下载
  5. 设置TextView文字居中,代码实现android:layout_gravity
  6. android控件布局
  7. Android的四种基本布局

随机推荐

  1. android jetpack 简单livedata和viewmode
  2. RxJava1的使用介绍
  3. Android 4.0源码放出
  4. Thread
  5. Android给控件添加默认点击效果
  6. 在浏览器里判断设备来源,跳转到不同的App
  7. Xamarin.Android使用教程之在Android和Xa
  8. Eclipse & Android(安卓)模拟器
  9. Android上oprofile使用说明
  10. 自定义Android(安卓)ListView控件:Expanda