`
chenqiang5206
  • 浏览: 33756 次
  • 性别: Icon_minigender_1
  • 来自: 江西
社区版块
存档分类

初学Android,五大布局对象(六)

 
阅读更多

Android五大布局对象,它们分别是
FrameLayout(框架布局:不知道是不是这么翻译的),
LinearLayout (线性布局),
AbsoluteLayout(绝对布局),
RelativeLayout(相对布局),
TableLayout(表格布局).
FrameLayout:
FrameLayout是最简单的一个布局对象。它被定制为你屏幕上的一个空白备用区域,之后你可以在其中填充一个单一对象 — 比如,一张你要发布的图片。所有的子元素将会固定在屏幕的左上角;你不能为FrameLayout中的一个子元素指定一个位置。后一个子元素将会直接在前 一个子元素之上进行覆盖填充,把它们部份或全部挡住(除非后一个子元素是透明的)。
我们看一下效果图:
<ignore_js_op style="word-wrap: break-word; "><img id="aimg_3286" aid="3286" src="http://www.apkbus.com/data/attachment/forum/201105/16/083444g087922f266fzy96.jpg" zoomfile="data/attachment/forum/201105/16/083444g087922f266fzy96.jpg" file="data/attachment/forum/201105/16/083444g087922f266fzy96.jpg" class="zoom" width="321" inpost="1" alt="1.jpg" title="1.jpg" lazyloaded="true" style="word-wrap: break-word; cursor: pointer; "></ignore_js_op>
其中Main.xml代码如下:

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



LinearLayout:
LinearLayout以你为它设置的垂直或水平的属性值,来排列所有的子元素。所有的子元素都被堆放在其它元素之后,因此一个垂直列表的每一行只会有 一个元素,而不管他们有多宽,而一个水平列表将会只有一个行高(高度为最高子元素的高度加上边框高度)。LinearLayout保持子元素之间的间隔以 及互相对齐(相对一个元素的右对齐、中间对齐或者左对齐)。
LinearLayout还支持为单独的子元素指定weight。好处就是允许子元素可以填充屏幕上的剩余空间。这也避免了在一个大屏幕中,一串小对象挤 成一堆的情况,而是允许他们放大填充空白。子元素指定一个weight值,剩余的空间就会按这些子元素指定的weight比例分配给这些子元素。默认的weight值为0。例如,如果有三个文本框,其中两个指定了weight值为1,那么,这两个文本框将等比例地放大,并填满剩余的空间,而第三个文本框 不会放大。
我们看一下效果图:
<ignore_js_op style="word-wrap: break-word; "><img id="aimg_3287" aid="3287" src="http://www.apkbus.com/data/attachment/forum/201105/16/083446jn7unffn1fp7jp4p.jpg" zoomfile="data/attachment/forum/201105/16/083446jn7unffn1fp7jp4p.jpg" file="data/attachment/forum/201105/16/083446jn7unffn1fp7jp4p.jpg" class="zoom" width="320" inpost="1" alt="2.jpg" title="2.jpg" lazyloaded="true" _load="1" style="word-wrap: break-word; cursor: pointer; "></ignore_js_op>
其中Main.xml代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns: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="Welcome to Mr Wei's blog"
  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" android:gravity="center_horizontal" //这里字水平居中
  25. android:background="#aa0000"
  26. android:layout_width="wrap_content"
  27. android:layout_height="fill_parent"
  28. android:layout_weight="1"/>
  29. <TextView
  30. android:text="green"
  31. android:gravity="center_horizontal "
  32. android:background="#00aa00"
  33. android:layout_width="wrap_content"
  34. android:layout_height="fill_parent"
  35. android:layout_weight="1"/>
  36. </LinearLayout>
  37. </LinearLayout>
复制代码


AbsoluteLayout:
AbsoluteLayout可以让子元素指定准确的x/y坐标值,并显示在屏幕上。(0, 0)为左上角,当向下或向右移动时,坐标值将变大。AbsoluteLayout没有页边框,允许元素之间互相重叠(尽管不推荐)。我们通常不推荐使用AbsoluteLayout,除非你有正当理由要使用它,因为它使界面代码太过刚性,以至于在不同的设备上可能不能很好地工作。
我们看一下效果图:
<ignore_js_op style="word-wrap: break-word; "><img id="aimg_3288" aid="3288" src="http://www.apkbus.com/data/attachment/forum/201105/16/083447rj59crpiyrfbretm.jpg" zoomfile="data/attachment/forum/201105/16/083447rj59crpiyrfbretm.jpg" file="data/attachment/forum/201105/16/083447rj59crpiyrfbretm.jpg" class="zoom" width="321" inpost="1" alt="3.jpg" title="3.jpg" lazyloaded="true" _load="1" style="word-wrap: break-word; cursor: pointer; "></ignore_js_op>
其中Main.xml代码如下:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <AbsoluteLayout xmlns: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="Welcome to Mr Wei's blog"
  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>
复制代码


RelativeLayout:
RelativeLayout允许子元素指定他们相对于其它元素或父元素的位置(通过ID指定)。因此,你可以以右对齐,或上下,或置于屏幕中央的形式来 排列两个元素。元素按顺序排列,因此如果第一个元素在屏幕的中央,那么相对于这个元素的其它元素将以屏幕中央的相对位置来排列。如果使用XML来指定这个layout,在你定义它之前,被关联的元素必须定义。
让我们看一下效果图:
<ignore_js_op style="word-wrap: break-word; "><img id="aimg_3289" aid="3289" src="http://www.apkbus.com/data/attachment/forum/201105/16/08344837wk855wwg11ghdf.jpg" zoomfile="data/attachment/forum/201105/16/08344837wk855wwg11ghdf.jpg" file="data/attachment/forum/201105/16/08344837wk855wwg11ghdf.jpg" class="zoom" width="323" inpost="1" alt="4.jpg" title="4.jpg" lazyloaded="true" _load="1" style="word-wrap: break-word; cursor: pointer; "></ignore_js_op>
其中Main.xml代码如下:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns: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="Welcome to Mr Wei's blog:"/>
  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容器不会显示rowcloumnscell的边框线。每个row拥有0个或多个的cell;每个cell拥有一个View对象。表格由列和行组成许多的单元格。表格允许单元格为空。单元格不能跨列,这与HTML中的不一样。
下面让我们看一下效果图:
<ignore_js_op style="word-wrap: break-word; "><img id="aimg_3285" aid="3285" src="http://www.apkbus.com/data/attachment/forum/201105/16/0834439z572c3ou222qz1b.jpg" zoomfile="data/attachment/forum/201105/16/0834439z572c3ou222qz1b.jpg" file="data/attachment/forum/201105/16/0834439z572c3ou222qz1b.jpg" class="zoom" width="320" inpost="1" alt="5.jpg" title="5.jpg" lazyloaded="true" _load="1" style="word-wrap: break-word; cursor: pointer; "></ignore_js_op>
其中Main.xml代码如下:
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TableLayout xmlns: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. <TextView android:layout_column="1" android:text="Open..." />
  7. <TextView android:text="Ctrl-O" android:gravity="right" />
  8. </TableRow>
  9. <TableRow>
  10. <TextView android:layout_column="1" android:text="Save..." />
  11. <TextView android:text="Ctrl-S" android:gravity="right" />
  12. </TableRow>
  13. <View android:layout_height="2dip" android:background="#FF909090" /> //这里是上图中的分隔线
  14. <TableRow>
  15. <TextView android:text="X" />
  16. <TextView android:text="Export..." />
  17. <TextView android:text="Ctrl-E" android:gravity="right " />
  18. </TableRow>
  19. <View android:layout_height="2dip" android:background="#FF909090" />
  20. <TableRow>
  21. <TextView android:layout_column="1" android:text="Quit"
  22. android:padding="3dip" />
  23. </TableRow>
  24. </TableLayout>
复制代码

分享到:
评论

相关推荐

    Android 开发五大布局案例使用

    在Android开发中,布局...通过上述案例,开发者可以逐步掌握Android五大布局的使用技巧,理解它们各自的特点和适用场景,从而提升UI设计的能力。在实践中不断学习和探索,将有助于成为一名出色的Android开发者。

    初学android的一些心得

    3. **取消系统对 BUTTON 英文字母自动大小写转换**:Android 默认会对按钮上的文本进行首字母大写处理,可以通过设置 `android:textAllCaps="false"` 属性来禁用这一特性。 #### 三、界面设计与布局技巧 1. **布局...

    android初学者开发笔记

    #### 一、六大布局详解 在Android开发过程中,合理的布局设计对于用户体验至关重要。下面详细介绍六种常见的Android布局及其特点。 ##### 1. **FrameLayout(帧布局)** - **特点**:帧布局是最简单的布局之一,它...

    Android_布局属性大全

    本文将深入探讨`RelativeLayout`及其相关属性,为Android初学者提供一个全面的指南。 #### 二、RelativeLayout简介 `RelativeLayout`是一种基于相对位置关系进行布局管理的容器,它允许子视图根据其他视图的位置或...

    Android2初学者入门

    - **Android对手机业界的影响**: Android系统的出现极大地推动了智能手机的发展,促进了移动应用生态的繁荣。它为开发者提供了开放的平台,降低了移动应用的开发门槛。 - **Android发布**: 2008年,第一款搭载...

    Android多媒体编程从初学到精通》第1章

    ### Android多媒体编程初学至精通的关键知识点 #### 一、Android多媒体编程的背景与趋势 在探讨Android多媒体编程之前,我们首先要理解其背后的行业趋势。随着4C(计算机、通信、消费电子、内容)融合的深入,移动...

    Android学习笔记总结初学者必看.rar_Android java_android

    3. **基本概念**:理解Activity、Intent、Service、BroadcastReceiver和ContentProvider这五大组件是Android开发的基础。Activity是用户界面,Intent用于组件间的通信,Service在后台运行,BroadcastReceiver接收...

    安卓开发 初学者

    总之,"Android开发初学者"应当从理解基础布局开始,通过实际的代码实例如`TestDemo`来练习,逐步提升到更复杂的布局和功能实现。在实践中不断学习和积累经验,是成为合格Android开发者的关键步骤。

    史上最详细的Android-Studio系列教程.pdf.zip_android_android studio_android

    总之,这个史上最详细的Android Studio系列教程全面覆盖了Android开发的各个环节,无论你是初学者还是经验丰富的开发者,都能从中获益匪浅。通过深入学习和实践,你将能够熟练掌握Android Studio,开发出高效、高...

    Android的商城个人中心项目,有fragment和头像等。对于初学者有很大的帮助。

    综上所述,这个Android的商城个人中心项目涵盖了Android开发的核心概念和技术,包括Fragment的运用、头像加载、布局设计、数据存储、事件处理、权限管理以及UI优化等。对于初学者来说,这是一个极好的学习实践案例,...

    帧布局_霓虹灯

    本篇文章将深入探讨帧布局及其属性的使用,这对于初学者来说是不可或缺的基础知识。 帧布局在Android中的主要作用是允许你在屏幕上定位一个或多个视图,其中每个视图都像一个帧一样叠放在一起。帧布局的特点是其子...

    浙江大学android公开课

    Android系统主要由五个层次构成:Linux内核、硬件抽象层(HAL)、运行时库、应用程序框架和应用程序。Linux内核提供基础服务,如内存管理、进程调度等。HAL使得上层软件与硬件接口标准化。运行时库包括Dalvik或ART...

    Android开发教程基础版 Android中文开发教程

    《Android开发教程基础版》是一本专为初学者设计的Android应用开发指南,旨在帮助读者快速掌握Android开发的基础知识和技能。本教程以其清晰易懂的特性,为想要踏入Android开发领域的学习者提供了全面的指导。 一、...

    Android课程 适合菜鸟和小白菜

    - 掌握Android五大布局:线性布局(LinearLayout)、相对布局(RelativeLayout)、框架布局(FrameLayout)、网格布局(GridLayout)、表格布局(TableLayout)的使用和特点。 3. Activity生命周期管理 - 学习...

    Android系统结构和SDK使用;Android SDK的开发环境;Android应用程序的概述和框架;Android应用程序示例;Android应用程序的内容;Android的UI系统实现;视图组(ViewGroup)和布局(Layout)的使用

    #### 五、Android应用程序的内容 **5.1 Android应用程序的概念性描述** Android应用程序由多个组件构成,包括Activity、Service、Broadcast Receiver和Content Provider等。这些组件共同协作来完成特定的任务。 *...

    Android原生开发的教程(初学者必看)

    ### Android原生开发教程知识点详解 #### 一、配置开发环境 ...通过学习这些内容,初学者可以逐步掌握Android应用的开发流程,从环境搭建到应用发布,为成为一名合格的Android开发者打下坚实的基础。

    Android仿美团外卖菜单界面

    Android仿美团外卖菜单界面的布局文件主要由两个部分组成:左侧菜单类别列表和右侧菜单详情列表。左侧菜单类别列表使用ListView控件来实现,而右侧菜单详情列表使用StickyListHeadersListView控件来实现。 ...

    AndroidCalendarView_androidcalendar_

    本教程将针对初学者,详细讲解如何使用`AndroidCalendarView`以及与其相关的知识点。 ### 一、AndroidCalendarView简介 `AndroidCalendarView`是Android SDK提供的一种内置控件,它为用户提供了一个简洁的日历界面...

    Android 安卓 开发教程 PDF 电子书

    大部分Android开发基于Java语言,因此掌握Java的基本语法和面向对象编程概念至关重要。书中的这部分将涵盖变量、数据类型、流程控制、类和对象等核心概念。 四、Android应用程序架构 Android应用由一系列组件构成,...

    android_应用.rar

    本教程“android_应用.rar”是针对Android 应用开发的一份非常好的入门资料,旨在帮助初学者快速掌握Android应用的基本开发技能。 一、Android 应用开发基础 1. 开发环境搭建:Android Studio是Google官方推荐的...

Global site tag (gtag.js) - Google Analytics