为了更好地管理Android应用程序的用户界面组件,Android它提供了一个布局管理。通过使用布局管理,Android具有良好的平台无关的图形用户界面应用程序。

平时,推荐布局管理器来管理分布式组件,尺寸,而不是直接设置位置和大小的组件,组件的大小。程序猿要做的。仅仅是为容器选择合适的布局管理器。

以下是布局管理器的结构图。

从上图能够看出,全部的布局管理器都直接或者间接继承ViewGroup

线性布局(LineraLayout)

顾名思义,就是一条直线,只是这条直线摆放满了,宁可超出屏幕也不换行。

经常使用属性:

android:divider 设置垂直布局时两个button之间的分隔条。

android:graviyt  设置布局管理器内组件的对其方式。可选值(top,botton,left。right。center,vertical,fill_vertical,center_horizontal,center,clip_horizontal)

android:orientation 设置布局的方向。

可选值(horizontal,vertical)

LineraLayout包括的全部子元素都受LineraLayout.LayoutParams控制(能够理解为容器给子控件附加的属性),因此LineraLayout包括的子元素能够额外指定下面属性

android:layout_gravity  指定该子元素LineraLayout中的对齐方式

android:layout_width  指定该子元素在LineraLayout中所占的权重

由于线性布局确实没什么难度,这里就不贴代码了。

表格布局(TableLayout)

表格布局继承了LineraLayout,因此它的本质依旧是线性布局,表格布局採用行,列的形式来管理UI组件。TableLayout并不须要明白的声明包括多少行,多少列,而是通过加入TableRow。其它组件来控制表格的行列数。每次向TableLayout中加入一个TableRow。该TableRow就是一个表格行。TableRow也是容器,因此它也能够不断地加入其它组件,每加入一个子组件,该表格就添加一列。
假设直接向TableLayout中加入组件。那么这个组件将直接占用一行。在表格布局中。列的宽度由该列中最宽的那个单元格决定,整个表格的布局宽度取决于父容器的宽度(默认总是占满父容器本身)

经常使用属性:

android:collapseColumns   设置须要被隐藏列的序列号,多个序列号之间用逗号隔开

android:shrinkColumns   设置同意被收缩的列的序列号,多个序列之间号用逗号隔开

android:stretchColums  设置同意被拉伸列的序列号。多个序列之间号用逗号隔开

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<!-- 定义第一个表格 这里的位置相似数组,从0開始 第一列同意收缩,第二列同意拉伸 -->
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FF0000"
android:shrinkColumns="1"
android:stretchColumns="2" >
<!-- 直接加入button。它自己会占一行 -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="独自一行的button" />
<TableRow>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="普通button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="收缩的的的的的的button" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="拉伸button" />
</TableRow>
</TableLayout>
<!-- 定义第二个表格 指定第1列隐藏 -->
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:collapseColumns="1" >
<!-- 直接加入button,它自己会占一行 -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="独自一行的button" />
<TableRow>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="普通button1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="普通button2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="普通button3" />
</TableRow>
</TableLayout>
</LinearLayout>

效果图:

帧布局(FrameLayout)

帧布局直接继承了VIewGroup组件通常在游戏开发中使用,并为每一个增加当中的组件创建一个空白的区域(称为一帧)。每一个子组件占领一帧。这些帧会依据gravity属性运行自己主动对齐。类似于PS的图层。假设最后一个局部铺满屏幕。那么仅仅有最后一个控件可见。

另外FrameLayout包括的子元素也受FrameLayout.LayoutParams控制,因此它所包括子元素也可指定android:layout_gravity属性,该属性控制该子元素在FrameLayout中的对其方式。

经常使用属性:

android:foreground 设置该帧布局容器的前景图像

android:foregroundGravity 定义绘制前景图像的gravity属性

以下的Demo是4个TextView叠在一起,上面的TextView遮住以下的TextView

<?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" >
<!-- 定义4个TextView 先定义底部的 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#f00"
android:height="400dp"
android:width="400dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#0f0"
android:height="350dp"
android:width="350dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#ff0"
android:height="300dp"
android:width="300dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="#00f"
android:height="250dp"
android:width="250dp" />
</FrameLayout>

效果图:

相对布局(RelativeLayout)

相对布局容器内子组件的位置总是相对兄弟组件或者父容器来决定的,因此这样的布局方式被称为相对布局。假设A组件的位置是由B组件的位置来决定的,Android要求先定义B组件,在定义A组件。

经常使用属性:

boolean值的:

android:gravity  设置该布局容器内各组件的对其方式

android:ignoreGravity  设置哪个控件不受gravity影响

相同为了控制子控件的布局分布。Relative提供了内部类Relative.LayoutParams供子组件控制分布

android:layout_centerHorizontal   控件该子组件是否位于布局容器的水平居中

android:layout_centerVertical   控件该子组件是否位于布局容器的垂直居中

android:layout_centerInParent 控制该子组件是否位于布局容器的中央位置

android:layout_alignParentBottom 控制该子组件是否与布局容器底部对齐

android:layout_alignParentLeft    控制该子组件是否与布局容器左边对齐

android:layout_alignParentRight    控制该子组件是否与布局容器右边对齐

android:layout_alignParenTop    控制该子组件是否与布局容器顶端对齐

相对于其它ID的:

android:layout_toRightOf  控制该子组件位于给出ID组件的右側

android:layout_toLeftOf   控制该子组件位于给出ID组件的左側

android:layout_abover  控制该子组件位于给出ID的上方

android:layout_below   控制该子组件位于给出ID的下方

android:layout_alignTop  控件该子组件位于给出ID组件的上边界对齐

android:layout_alignBottom  控件该子组件位于给出ID组件的下边界对齐

android:layout_alignLeft  控件该子组件位于给出ID组件的左边界对齐

android:layout_alignRight  控件该子组件位于给出ID组件的右边界对齐

除此之外,RelativeLayout.LayoutParams继承了android.view.ViewGroup.MarginLayoutParams,因此RelativeLayout布局容器中每一个组件也可指定android.view.ViewGroup.MarginLayoutParams的XML属性。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" > <!-- 定义该组件在容器中间 -->
<TextView
android:id="@+id/center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<span style="color:#33ccff;">android:layout_centerInParent="true"</span>
android:background="@drawable/ic_launcher" />
<!-- 定义在该组件在center组件上方 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<span style="color:#33ccff;"> android:layout_above="@id/center"
android:layout_alignLeft="@id/center"</span>
android:background="@drawable/ic_launcher" />
<!-- 定义在该组件在center组件下方 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<span style="color:#33ccff;"> android:layout_below="@id/center"
android:layout_alignLeft="@id/center"</span>
android:background="@drawable/ic_launcher" />
<!-- 定义在该组件在center组件左方 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<span style="color:#33ccff;"> android:layout_toLeftOf="@id/center"
android:layout_alignTop="@id/center"</span>
android:background="@drawable/ic_launcher" />
<!-- 定义在该组件在center组件右方 -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<span style="color:#33ccff;"> android:layout_toRightOf="@id/center"
android:layout_alignTop="@id/center"</span>
android:background="@drawable/ic_launcher" /> </RelativeLayout>

注意:假设单纯指定在center控件的左側,系统识别出的区域是左图效果,由于这个位置不明白,所以还须要它跟那个控件顶部对齐,这样才干确定详细位置。

效果图:

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

网格布局(GridLayout)

android中的网格局部是4.0才出现的,假设低版本号使用须要导入对应的支持库,网格布局的作用类似于 HTML的table标签。它把整个容器划分为row*columsn个网格,每一个网格能够放置一个组件,除此之外。也能够设置一个组件横跨多少列,一个组件横跨多少行

经常使用属性:

android:alignmentMode  设置该布局管理器採用的对齐模式

android:columnCount  设置该网格列的数量

android:columnOrderPreserved   设置该网格容器是否保留列序号

android:rowCount 设置该网格行的数量

android:rowOrderPreserved   设置该网格容器是否保留行序号

android:useDefaultMargins  设置该网格布局管理器是否使用默认的页边距

为了控制GridLayout布局容器中各子组件的布局分布。依旧提供GridLayout.LayoutParams,该内部类提供了大量的XML控制子组件分布

android:layout_column 设置该子组件在GridLayout的第几列

android:layout_columnSpan 设置该子组件在GridLayout横向上跨几列

android:layout_gravity   设置该子组件採用何种方式占领该网格的空间

android:layout_row   设置该子组件在GridLayout的第几行

android:layout_rowSapn   设置该子组件在GridLayout纵向上跨几行

接下来看一下简单模拟计算器的布局:因为控件较多,这里就用代码创建空间

java文件

public class GridLayoutTest extends Activity
{
GridLayout gridLayout;
// 定义16个button的文本
String[] chars = new String[]
{
"7" , "8" , "9" , "÷",
"4" , "5" , "6" , "×",
"1" , "2" , "3" , "-",
"." , "0" , "=" , "+"
};
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
gridLayout = (GridLayout) findViewById(R.id.root); for(int i = 0 ; i < chars.length ; i++)
{
Button bn = new Button(this);
bn.setText(chars[i]);
// 设置该button的字体大小
bn.setTextSize(40);
// 指定该组件所在的行
GridLayout.Spec rowSpec = GridLayout.spec(i / 4 + 2);
// 指定该组件所在列
GridLayout.Spec columnSpec = GridLayout.spec(i % 4);
GridLayout.LayoutParams params = new GridLayout.LayoutParams(
rowSpec , columnSpec);
// 指定该组件占满父容器
params.setGravity(Gravity.FILL);
gridLayout.addView(bn , params);
}
}
}

XML

<?xml version="1.0" encoding="utf-8" ?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:rowCount="6"
android:columnCount="4"
android:id="@+id/root"
>
<!-- 定义一个横跨4列的文本框。
并设置该文本框的前景色、背景色等属性 -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_columnSpan="4"
android:textSize="50sp"
android:layout_marginLeft="4px"
android:layout_marginRight="4px"
android:padding="5px"
android:layout_gravity="right"
android:background="#eee"
android:textColor="#000"
android:text="0"/>
<!-- 定义一个横跨4列的button -->
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_columnSpan="4"
android:text="清除"/>
</GridLayout>

效果图:

绝对布局(AbsoluteLayout)

绝对布局不提供不论什么布局控制,而是由开发者自己通过定义X。Y坐标来控制组件的位置,当使用绝对布局的作为容器的时候。布局管理器不再管理子组件的位置,大小,-----都 是由开发者自己控制,事实上大部分时候,使用绝对布局不是一个好的思路,Android应用千差万别。屏幕大小。分辨率存在较大差异。使用绝对布局会非常难兼容不同屏幕大小。分辨率问题,因此绝对布局已经过时。

经常使用属性:

android:layout_x 指定该组件的X坐标

android:layout_y指定该组件的Y坐标

这里就不做具体解释了。

最后,建议在实际开发中多采用直线布局,相对布局。

版权声明:本文博主原创文章,博客,未经同意不得转载。

Android 布局管理器的更多相关文章

  1. Android布局管理器-使用TableLayout表格布局管理器实现简单的用户登录页面

    场景 Android布局管理器-使用FrameLayout帧布局管理器显示层叠的正方形以及前景照片: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article ...

  2. Android布局管理器-使用FrameLayout帧布局管理器显示层叠的正方形以及前景照片

    场景 Android布局管理器-使用LinearLayout实现简单的登录窗口布局: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details ...

  3. Android布局管理器-使用LinearLayout实现简单的登录窗口布局

    场景 Android布局管理器-从实例入手学习相对布局管理器的使用: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/1038389 ...

  4. [置顶] Android布局管理器 - 详细解析布局实现

    布局管理器都是以ViewGroup为基类派生出来的; 使用布局管理器可以适配不同手机屏幕的分辨率,尺寸大小; 布局管理器之间的继承关系 : 在上面的UML图中可以看出, 绝对布局 帧布局 网格布局 相 ...

  5. Android布局管理器(线性布局)

    线性布局有LinearLayout类来代表,Android的线性布局和Swing的Box有点相似(他们都会将容器里面的组件一个接一个的排列起来),LinearLayout中,使用android:ori ...

  6. Android布局管理器(表格布局)

    表格布局有TableLayout所代表,TableLayout继承了LinearLayout,因此他的本质依然是LinearLayout. 表格布局采用行.列的形式来进行管理,在使用的时候不需要声明多 ...

  7. android开发4:Android布局管理器1(线性布局,相对布局RelativeLayout-案例)

    控件类概述 View 可视化控件的基类 属性名称 对应方法 描述 android:background setBackgroundResource(int) 设置背景 android:clickabl ...

  8. android布局管理器

    1 LinearLayout (线性布局) 让所有的组件都成为单一的方向,机垂直的或水平的(默认). android:Layout_weight //该属性控制水平和垂直方向某个控件所占比例. 2.F ...

  9. Android布局管理器(贞布局)

    贞布局有FrameLayout所代表,它直接继承了ViewGroup组建 贞布局为每个加入其中的组件创建一个空白区域(一帧),所以每个子组件占用一帧,这些贞都会根据gravity属性执行自动对齐 贞布 ...

随机推荐

  1. Jndi使用好处,与简单实例【Tomcat】

    JNDI学习总结(一)——JNDI数据源的配置 一.数据源的由来 在Java开发中,使用JDBC操作数据库的四个步骤如下:   ①加载数据库驱动程序(Class.forName("数据库驱动 ...

  2. SVN的CheckOut操作和Export操作的区别

  3. 利用h5标签在网页上播放音乐

    方案1: <embed src="等一分钟.mp3" id="aa"> <input type=button value=暂停 onclick ...

  4. Maven 中配置 Urlrewrite 基本配置

    1. 在maven项目的pom.xml文件里加入: <!-- URL Rewrite --> <dependency> <groupId>org.tuckey< ...

  5. 文件下载-SpringMVC中測试

    直接改动文件路径就能够.其它都不须要改动,帮助类已经为大家写好,可直接使用 1.Scroller: /** * 下载文件 * @author liupeng * @param request * @p ...

  6. 使用CSS3制图

    参考资料:http://blog.csdn.net/fense_520/article/details/37892507 本文非转载.为个人原创,转载请先联系博主,谢谢~ 准备: <!DOCTY ...

  7. web service接口测试工具选型

    1  简介 1.1   范围 1.2   目的 本文档用于指导测试部进行接口测试. 2013-03-11磁针石 #承接软件自动化实施与培训等gtalk:ouyangchongwu#gmail.com ...

  8. [置顶] 轻量级语言Lua入门

    作为一个脚本爱好者,而且是脚本(Perl)起家的我,一有空就喜欢学习下这些脚本语言.据说魔兽世界.愤怒小鸟都用到了它,所以今天研究下Lua这个叫法有点奇特的脚本 [转载请注明出处:http://blo ...

  9. HDU 3036 Escape 网格图多人逃生 网络流||二分匹配 建图技巧

    题意: 每一个' . '有一个姑娘, E是出口,'.'是空地 , 'X' 是墙. 每秒钟每一个姑娘能够走一步(上下左右) 每秒钟每一个出口仅仅能出去一个人 给定n*m的地图, 时限T 问全部姑娘是否能 ...

  10. C++ - Identifier not found

     This is because forward declaration in C++: Compiler needs to know function prototype when functi ...