在本章中,我们将Android学习组件布局。在前面的章节,我们也开始使用LinearLayout布局。然后我们在布局文件更加具体的学习和理解,会。

Android的界面是有布局和组件协同完毕的,布局好比是建筑里的框架,而组件则相当于建筑里的砖瓦。组件依照布局的要求依次排列。就组成了用户所看见的界面。

Android的五大布局各自是LinearLayout(线性布局)、FrameLayout(单帧布局)、RelativeLayout(相对布局)、AbsoluteLayout(绝对布局)和TableLayout(表格布局)。

1、线性布局(LinearLayout)

       线性布局的形式能够分为两种,第一种横向线性布局 另外一种纵向线性布局,总而言之都是以线性的形式 一个个排列出来的,纯线性布局的缺点是非常不方便改动控件的显示位置,所以开发中常常会以线性布局与相对布局嵌套的形式设置布局。

2、帧布局(FrameLayout)

       原理是在控件中绘制不论什么一个控件都能够被后绘制的控件覆盖,最后绘制的控件会盖住之前的控件。

3、绝对布局(AbsoluteLayout)

      使用绝对布局能够设置随意控件的 在屏幕中 X Y 坐标点,和帧布局一样后绘制的控件会覆盖住之前绘制的控件。

4、相对布局(RelativeLayout)

      相对布局是android布局中最为强大的。首先它能够设置的属性是最多了,其次它能够做的事情也是最多的。android手机屏幕的分辨率五花八门所以为了考虑屏幕自适应的情况所以在开发中建议大家都去使用相对布局 它的坐标取值范围都是相对的所以使用它来做自适应屏幕是正确的。

5、表格布局(TableLayout)

      在表格布局中能够设置TableRow 能够设置 表格中每一行显示的内容 以及位置 ,能够设置显示的缩进。对齐的方式。

【博客专栏:http://blog.csdn.net/column/details/alearning.html

LinearLayout (线性布局)

       LinearLayout依照垂直或者水平的顺序依次排列子元素。每个子元素都位于前一个元素之后。不仅LinearLayout布局能够嵌套使用。其它的布局方式也能够嵌套使用。

LinearLayout中的子元素属性android:layout_weight的作用是描写叙述该子元素在剩余空间中占有的大小比例,默认值就为0。

本例拓展的属性配置是:

  • android:layout_weight   权重
       假设LinearLayout中有两个不等长的文本框(TextView等),那么他们的android:layout_weight值分别为1和2,那么第一个文本框将占领剩余空间的三分之二。第二个文本框将占领剩余空间中的三分之中的一个。android:layout_weight遵循数值越小,重要度越高的原则。本例演示时android:layout_weight都为1。所以两个LinearLayout平均分配宽度。
【布局文件】activity_linearlayout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
tools:context=".MainActivity" > <!-- 单个LinearLayout --> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#99CCFF"
android:orientation="horizontal" > <TextView
android:layout_width="match_parent"
android:layout_height="80dp"
android:gravity="center"
android:text="#99CCFF" />
</LinearLayout> <!-- 单个LinearLayout下包括两个水平平均分布的LinearLayout --> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" > <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#CCFF66"
android:orientation="vertical" > <TextView
android:layout_width="match_parent"
android:layout_height="60dp"
android:gravity="center"
android:text="#CCFF66" />
</LinearLayout> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#FF9900"
android:orientation="vertical" > <TextView
android:layout_width="match_parent"
android:layout_height="60dp"
android:gravity="center"
android:text="#FF9900" />
</LinearLayout>
</LinearLayout> <!-- 以上两种情况的叠加 --> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" > <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#CC99CC"
android:orientation="vertical" > <TextView
android:layout_width="match_parent"
android:layout_height="120dp"
android:gravity="center"
android:text="#CC99CC" />
</LinearLayout> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical" > <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CC9933"
android:orientation="horizontal" > <TextView
android:layout_width="match_parent"
android:layout_height="60dp"
android:gravity="center"
android:text="#CC9933" />
</LinearLayout> <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#99CCCC"
android:orientation="horizontal" > <TextView
android:layout_width="match_parent"
android:layout_height="60dp"
android:gravity="center"
android:text="#99CCCC" />
</LinearLayout>
</LinearLayout>
</LinearLayout> </LinearLayout>

效果截图:


FrameLayout (帧布局)

        FrameLayout是五大布局中最简单的一个布局,在这个布局中,整个界面被当成一块空白备用区域。所有的子元素都不能被指定放置的位置。它们统统放于这块区域的左上角,而且后面的子元素直接覆盖在前面的子元素之上,将前面的子元素部分和所有遮挡。
本例拓展的属性配置是:
  • android: gravity 指定控件的基本位置
注:该属性之前也有介绍过,本例特殊之处。旨在说明假设给此属性指定两个參数时。能够用採用下面格式,以“|”连接。
android:gravity="bottom|center"

【布局文件】activity_framelayoutt.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_height="match_parent"
android:background="#99CCFF"
android:layout_width="match_parent"
android:gravity="bottom|center"
android:text="第一层\n【#99CCFF】"/> <TextView android:layout_height="200dp"
android:background="#CC99CC"
android:layout_width="200dp"
android:gravity="bottom|center"
android:text="第二层\n【#CC99CC】"/> <TextView android:layout_height="100dp"
android:layout_width="100dp"
android:gravity="bottom|center"
android:background="#99CCCC"
android:text="第三层\n【#99CCCC】"/> </FrameLayout>

效果截图:

watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvbWFob2tpbmc=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">

AbsoluteLayout (绝对布局)

        AbsoluteLayout是绝对位置布局。

在此布局中的子元素的android:layout_x和android:layout_y属性将生效,用于描写叙述该子元素的坐标位置。屏幕左上角为坐标原点(0,0)。第一个0代表横坐标,向右移动此值增大,第二个0代表纵坐标,向下移动,此值增大。

在此布局中的子元素能够相互重叠。在实际开发中,通常不採用此布局格式,由于它的界面代码过于刚性,以至于有不能非常好的适配各种各样的终端设备。

本例拓展的属性配置是:
  • android:layout_x 指定控件的x轴的位置
  • android:layout_y 指定控件的y轴的位置
【布局文件】activity_absolutelayout.xml。
<?

xml version="1.0" encoding="utf-8"?

>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" > <TextView
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_x="30dp"
android:layout_y="30dp"
android:background="#009966"
android:text="#009966" /> <TextView
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_x="90dp"
android:layout_y="80dp"
android:background="#CC6699"
android:text="#CC6699" /> <TextView
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_x="30dp"
android:layout_y="180dp"
android:background="#3366CC"
android:text="#3366CC" /> <TextView
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_x="180dp"
android:layout_y="90dp"
android:background="#FFCC99"
android:text="#FFCC99" /> <TextView
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_x="240dp"
android:layout_y="200dp"
android:background="#FF6666"
android:text="#FF6666" /> </AbsoluteLayout>

效果截图:


參考资料

1、http://blog.chinaunix.net/uid-23544029-id-2985631.html

2、http://www.cnblogs.com/wisekingokok/archive/2011/08/23/2150452.html

3、http://blog.csdn.net/jzp12/article/details/7590591


【ALearning】第四章 Android Layout组件布局(一)的更多相关文章

  1. 【ALearning】第四章 Android Layout组件布局(二)

    前面我们分别介绍和学习了LinearLayout(线性布局).FrameLayout(单帧布局)和AbsoluteLayout(绝对布局).这次我们要进行RelativeLayout(相对布局)和Ta ...

  2. 第四章Android移植环境搭建

    第四章Android移植环境搭建 这一章主要学习如何搭建 Android 移植的环境.因为 Android 底层是基于 Linux 内核的,所以本章从交叉编译环境等嵌入式开发环境的搭建开始,介绍了 B ...

  3. 【Android开发日记】之入门篇(四)——Android四大组件之Activity

    在Android中,无论是开发者还是用户,接触最多的就算是Activity.它是Android中最复杂.最核心的组件.Activity组件是负责与用户进行交互的组件,它的设计理念在很多方面都和Web页 ...

  4. 第四章 android 命名规范和编码规范

    书里面讲的比较常见,单个人也是有不同的观点: 因为android绝大部分使用java开发的,因此java相关规范适用于android: Google Style: 英文地址:http://google ...

  5. [Learn AF3]第四章 App framework组件之Button

    Button    组件名称:Button     是否js控件:否     使用说明:如果说panel组件是af3的“核心(heart of the ui)”,那么Button就是af中的五虎上将之 ...

  6. android layout的布局

    1.android:layout_width.android:layout_heigth 表示控件的大小,长宽 2.andoid:layout_gravity .android:gravity表示控件 ...

  7. Android笔记(五十四) Android四大组件之一——ContentProvider(一)

    ContentProvider提供数据 在Android中,他的每个应用都是相互独立的,各自运行在自己的Dalvik虚拟机中,但现实使用中常常需要在多个应用之间进行数据交换,例如发短信需要获取联系人中 ...

  8. 【Android开发日记】之入门篇(六)——Android四大组件之Broadcast Receiver

    广播接受者是作为系统的监听者存在着的,它可以监听系统或系统中其他应用发生的事件来做出响应.如设备开机时,应用要检查数据的变化状况,此时就可以通过广播来把消息通知给用户.又如网络状态改变时,电量变化时都 ...

  9. Android学习(四) Layout五大布局

    我们知道Android系统应用程序一般是由多个Activity组成,而这些Activity以视图的形式展现在我们面前, 视图都是由一个一个的组件构成的.组件就是我们常见的Button.TextEdit ...

随机推荐

  1. ACE的构建(VC++6.0环境)

    ACE的构建(VC++6.0环境)Windows下ACE的构建1. 将ACE-5.5.zip解压到所需的安装目录,此处以E:/为例,解压后形成ACE_wrappers文件夹,因此ACE将会存在于ACE ...

  2. WebBrowser控件禁用超链接转向、脚本错误提示、默认右键菜单和快捷键

    原文:WebBrowser控件禁用超链接转向.脚本错误提示.默认右键菜单和快捷键 WebBrowser控件禁用超链接转向.脚本错误提示.默认右键菜单和快捷键从 VS2005开始,VS自带的 WebBr ...

  3. [Cocos2d-x]Android的android.mk文件通用版本

    原文地址: http://blog.ready4go.com/blog/2013/10/12/update-android-dot-mk-with-local-src-files-and-local- ...

  4. CS0433: 类型“BasePage”同一时候存在于“c:\Windows\Microsoft.NETxxxxxxxxxxxxxxxx

    网上常见的我就不说了. 假设其他地址的方法解决不了你的问题,那么请往下看. 该类是否存放于 App_Code 下,假设是把该类从App_Code中拉出来,然后再次执行试试.

  5. leetcode day6 -- String to Integer (atoi) &amp;&amp; Best Time to Buy and Sell Stock I II III

    1.  String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully con ...

  6. 因特网的IP协议是不可靠无连接的,那为什么当初不直接把它设计为可靠的?

    因特网使用的IP协议是无连接的,因此其传输是不可靠的. 这样easy使人们感到因特网非常不可靠,那为什么当初不直接把它设计为可靠的? 先打一个例如.邮局寄送的平信非常像无连接的IP数据报.每封平信可能 ...

  7. wwwtyro/cellophane

    wwwtyro/cellophane A dead simple web terminal that gets all of the boilerplate out of the way and le ...

  8. HDU1300DP

    /* HDU1300 DP 特定n饰品种类 每个饰品的两个数据.amount[i]代表数量.price[i]代表单位价格 购买珠宝时要满足下面购买规则: 单独买:每种珠宝要加上数量10 合并买:能够把 ...

  9. webapi Task

    webapi+Task并行请求不同接口实例 标题的名称定义不知道是否准确,不过我想表达的意思就是使用Task特性来同时请求多个不同的接口,然后合并数据:我想这种场景的开发对于对接过其他公司接口的人不会 ...

  10. Wix打包系列(七) 添加系统必备组件的安装程序

    原文:Wix打包系列(七) 添加系统必备组件的安装程序 我们知道在vs的打包工程中添加系统必备组件是一件很容易的事情,那么在wix中如何检测系统必备组件并在安装过程中安装这些组件.这里以.Net Fr ...