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代码如下:
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- > <!-- 我们在这里加了一个Button按钮 -->
- <Button
- android:text="button"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- <TextView
- android:text="textview"
- android:textColor="#0000ff"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </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代码如下:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="2">
- <TextView
- android:text="Welcome to Mr Wei's blog"
- android:textSize="15pt"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- </LinearLayout>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1">
-
- <TextView
- android:text="red" android:gravity="center_horizontal" //这里字水平居中
- android:background="#aa0000"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_weight="1"/>
- <TextView
- android:text="green"
- android:gravity="center_horizontal "
- android:background="#00aa00"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_weight="1"/>
- </LinearLayout>
- </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代码如下:
- <?xml version="1.0" encoding="utf-8"?>
- <AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <EditText
- android:text="Welcome to Mr Wei's blog"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- <Button
- android:layout_x="250px" //设置按钮的X坐标
- android:layout_y="40px" //设置按钮的Y坐标
- android:layout_width="70px" //设置按钮的宽度
- android:layout_height="wrap_content"
- android:text="Button"
- />
- </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代码如下:
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView
- android:id="@+id/label"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Welcome to Mr Wei's blog:"/>
- <EditText
- android:id="@+id/entry"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/label"/>
- <Button
- android:id="@+id/ok"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/entry"
- android:layout_alignParentRight="true"
- android:layout_marginLeft="10dip"
- android:text="OK" />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toLeftOf="@id/ok"
- android:layout_alignTop="@id/ok"
- android:text="Cancel" />
- </RelativeLayout>
复制代码
TableLayout:
TableLayout将子元素的位置分配到行或列中。一个TableLayout由许多的TableRow组成,每个TableRow都会定义一个row(事实上,你可以定义其它的子对象,这在下面会解释到)。TableLayout容器不会显示row、cloumns或cell的边框线。每个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代码如下:
- <?xml version="1.0" encoding="utf-8"?>
- <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent" android:layout_height="fill_parent"
- android:stretchColumns="1">
- <TableRow>
- <TextView android:layout_column="1" android:text="Open..." />
- <TextView android:text="Ctrl-O" android:gravity="right" />
- </TableRow>
- <TableRow>
- <TextView android:layout_column="1" android:text="Save..." />
- <TextView android:text="Ctrl-S" android:gravity="right" />
- </TableRow>
- <View android:layout_height="2dip" android:background="#FF909090" /> //这里是上图中的分隔线
- <TableRow>
- <TextView android:text="X" />
- <TextView android:text="Export..." />
- <TextView android:text="Ctrl-E" android:gravity="right " />
- </TableRow>
- <View android:layout_height="2dip" android:background="#FF909090" />
- <TableRow>
- <TextView android:layout_column="1" android:text="Quit"
- android:padding="3dip" />
- </TableRow>
- </TableLayout>
复制代码
分享到:
相关推荐
在Android开发中,布局...通过上述案例,开发者可以逐步掌握Android五大布局的使用技巧,理解它们各自的特点和适用场景,从而提升UI设计的能力。在实践中不断学习和探索,将有助于成为一名出色的Android开发者。
3. **取消系统对 BUTTON 英文字母自动大小写转换**:Android 默认会对按钮上的文本进行首字母大写处理,可以通过设置 `android:textAllCaps="false"` 属性来禁用这一特性。 #### 三、界面设计与布局技巧 1. **布局...
#### 一、六大布局详解 在Android开发过程中,合理的布局设计对于用户体验至关重要。下面详细介绍六种常见的Android布局及其特点。 ##### 1. **FrameLayout(帧布局)** - **特点**:帧布局是最简单的布局之一,它...
本文将深入探讨`RelativeLayout`及其相关属性,为Android初学者提供一个全面的指南。 #### 二、RelativeLayout简介 `RelativeLayout`是一种基于相对位置关系进行布局管理的容器,它允许子视图根据其他视图的位置或...
- **Android对手机业界的影响**: Android系统的出现极大地推动了智能手机的发展,促进了移动应用生态的繁荣。它为开发者提供了开放的平台,降低了移动应用的开发门槛。 - **Android发布**: 2008年,第一款搭载...
### Android多媒体编程初学至精通的关键知识点 #### 一、Android多媒体编程的背景与趋势 在探讨Android多媒体编程之前,我们首先要理解其背后的行业趋势。随着4C(计算机、通信、消费电子、内容)融合的深入,移动...
3. **基本概念**:理解Activity、Intent、Service、BroadcastReceiver和ContentProvider这五大组件是Android开发的基础。Activity是用户界面,Intent用于组件间的通信,Service在后台运行,BroadcastReceiver接收...
总之,"Android开发初学者"应当从理解基础布局开始,通过实际的代码实例如`TestDemo`来练习,逐步提升到更复杂的布局和功能实现。在实践中不断学习和积累经验,是成为合格Android开发者的关键步骤。
总之,这个史上最详细的Android Studio系列教程全面覆盖了Android开发的各个环节,无论你是初学者还是经验丰富的开发者,都能从中获益匪浅。通过深入学习和实践,你将能够熟练掌握Android Studio,开发出高效、高...
综上所述,这个Android的商城个人中心项目涵盖了Android开发的核心概念和技术,包括Fragment的运用、头像加载、布局设计、数据存储、事件处理、权限管理以及UI优化等。对于初学者来说,这是一个极好的学习实践案例,...
本篇文章将深入探讨帧布局及其属性的使用,这对于初学者来说是不可或缺的基础知识。 帧布局在Android中的主要作用是允许你在屏幕上定位一个或多个视图,其中每个视图都像一个帧一样叠放在一起。帧布局的特点是其子...
Android系统主要由五个层次构成:Linux内核、硬件抽象层(HAL)、运行时库、应用程序框架和应用程序。Linux内核提供基础服务,如内存管理、进程调度等。HAL使得上层软件与硬件接口标准化。运行时库包括Dalvik或ART...
《Android开发教程基础版》是一本专为初学者设计的Android应用开发指南,旨在帮助读者快速掌握Android开发的基础知识和技能。本教程以其清晰易懂的特性,为想要踏入Android开发领域的学习者提供了全面的指导。 一、...
- 掌握Android五大布局:线性布局(LinearLayout)、相对布局(RelativeLayout)、框架布局(FrameLayout)、网格布局(GridLayout)、表格布局(TableLayout)的使用和特点。 3. Activity生命周期管理 - 学习...
#### 五、Android应用程序的内容 **5.1 Android应用程序的概念性描述** Android应用程序由多个组件构成,包括Activity、Service、Broadcast Receiver和Content Provider等。这些组件共同协作来完成特定的任务。 *...
### Android原生开发教程知识点详解 #### 一、配置开发环境 ...通过学习这些内容,初学者可以逐步掌握Android应用的开发流程,从环境搭建到应用发布,为成为一名合格的Android开发者打下坚实的基础。
Android仿美团外卖菜单界面的布局文件主要由两个部分组成:左侧菜单类别列表和右侧菜单详情列表。左侧菜单类别列表使用ListView控件来实现,而右侧菜单详情列表使用StickyListHeadersListView控件来实现。 ...
本教程将针对初学者,详细讲解如何使用`AndroidCalendarView`以及与其相关的知识点。 ### 一、AndroidCalendarView简介 `AndroidCalendarView`是Android SDK提供的一种内置控件,它为用户提供了一个简洁的日历界面...
大部分Android开发基于Java语言,因此掌握Java的基本语法和面向对象编程概念至关重要。书中的这部分将涵盖变量、数据类型、流程控制、类和对象等核心概念。 四、Android应用程序架构 Android应用由一系列组件构成,...
本教程“android_应用.rar”是针对Android 应用开发的一份非常好的入门资料,旨在帮助初学者快速掌握Android应用的基本开发技能。 一、Android 应用开发基础 1. 开发环境搭建:Android Studio是Google官方推荐的...