AndroID总体有五大布局:
线性布局(LIEarLayout): 屏幕垂直或水平方向布局。 帧布局(FrameLayout):控件从屏幕左上角开始布局。 相对布局(relativeLayout): 以其他控件为参照布局。 绝对布局(absoluteLayout):以屏幕坐标布局。 表格布局(tableLayout):按照行列方式布局。一、linearLayout
线性布局在开发中使用最多,具有垂直方向与水平方向的布局方式,通过设置属性“androID:orIEntation”控制方向,属性值垂直(vertical)和水平(horizontal),默认水平方向。
在使用orIEntation时需要注意一个问题,假如我们使用默认布局方向,即水平方向,若linearLayout中存在不止一个控件且都未设置具体宽度,即这样的布局代码:
<linearLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent"> <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"/> <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"/></linearLayout>
则会出现下面的错误:
这个错误告诉我们在有多个子控件时需要设置布局方向或至少设置一个子控件在该布局方向的大小,我们可以显示设置布局方向或设置某一个子控件的宽度。
除orIEntation之外还有以下常用属性:
androID:gravity:内部控件对齐方式,常用属性值有center、center_vertical、center_horizontal、top、bottom、left、right等。这个属性在布局组件relativeLayout、tableLayout中也有使用,FrameLayout、absoluteLayout则没有这个属性。
center:居中显示,这里并不是表示显示在linearLayout的中心,当linearLayout线性方向为垂直方向时,center表示水平居中,但是并不能垂直居中,此时等同于center_horizontal的作用;同样当线性方向为水平方向时,center表示垂直居中,等同于center_vertical。
top、bottom、left、right顾名思义为内部控件居顶、低、左、右布局。
这里要与androID:layout_gravity区分开,layout_gravity是用来设置自身相对于父元素的布局。
androID:layout_weight:权重,用来分配当前控件在剩余空间的大小。正常情况下,值越大占据高度或宽度越大。例外的情况,在lineayLayout布局中使用这个属性时需要注意: 当水平方向布局且子控件的宽度为fill_parent或match_parent时,值越小占据宽度越大,垂直方向也一样。分析一下这种情况,类似这样的代码:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="horizontal" androID:layout_wIDth="match_parent" androID:layout_height="match_parent"> <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="40dp" androID:background="#666666" androID:text="第一个子控件" androID:gravity="center" androID:layout_weight="1"/> <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="40dp" androID:background="#EE4000" androID:text="第二个子控件" androID:gravity="center" androID:layout_weight="2"/></linearLayout>
显示效果:
这里出现这种情况主要是因为match_parent或fill_parent引起的,系统先给第一个子控件分配parent_wIDth(剩余空间),再给第二个分配parent_wIDth,即分配了两个parent_wIDth,此时剩余为parent_wIDth-2parent_wIDth=-parent_wIDth,这里主要问题就在这里,剩余控件其实已经为一个负数了。接着,第一个控件占宽度:parent_wIDth(当前已有宽度)+权重1/3*(-parent_wIDth)=2/3parent_wIDth;第二个控件占宽度:parent_wIDth+权重2/3*(-parent_wIDth)=1/3parent_wIDth,所以当宽度都是match_parent时,剩余空间则为负数,谁的权重大谁就会减去越多。
在平常开发中我们会经常用到这个属性,通过设置layout_weight能解决很多不可思议的布局问题。
二、FrameLayout
帧布局或叫层布局,从屏幕左上角按照层次堆叠方式布局,后面的控件覆盖前面的控件。该布局在开发中经常用到,因为是按层次方式布局,我们需要实现层面显示的样式时就可以采用这种布局方式,比如我们要实现一个类似百度地图的布局:
通过这张图我们可以看到地图与 *** 作按钮是分层显示的,运用FrameLayout我们也可以简单实现这样的样式,代码如下:
<?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"> <com.baIDu.mapAPI.map.MapVIEw androID:ID="@+ID/mapShowVIEw" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:clickable="true"/> <EditText androID:layout_wIDth="match_parent" androID:layout_height="40sp" androID:background="@drawable/edit_selector" androID:layout_marginleft="20sp" androID:layout_marginRight="20sp" androID:layout_margintop="30dp" androID:paddingleft="10sp" androID:textSize="14sp" androID:hint="搜地点、查公交、找路线" androID:textcolorHint="#aaaaaa" androID:gravity="left|center_vertical"/> <linearLayout androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:orIEntation="vertical" androID:layout_gravity="right" androID:layout_margintop="80dp" androID:layout_marginRight="20dp"> <button androID:ID="@+ID/traffic" androID:layout_wIDth="45sp" androID:layout_height="45sp" androID:text="路况" androID:textcolor="#ffffff" androID:textSize="14sp" androID:background="@drawable/corner_black_bgborder"/> <button androID:ID="@+ID/panorama" androID:layout_wIDth="45sp" androID:layout_height="45sp" androID:text="全景" androID:textcolor="#ffffff" androID:textSize="14sp" androID:layout_margintop="10dp" androID:background="@drawable/corner_black_bgborder"/> <button androID:ID="@+ID/company" androID:layout_wIDth="45sp" androID:layout_height="45sp" androID:text="同行" androID:textcolor="#ffffff" androID:textSize="14sp" androID:layout_margintop="10dp" androID:background="@drawable/corner_black_bgborder"/> </linearLayout> <button androID:ID="@+ID/location" androID:layout_wIDth="45sp" androID:layout_height="45sp" androID:layout_gravity="bottom" androID:text="定位" androID:textcolor="#ffffff" androID:textSize="14sp" androID:layout_marginleft="20dp" androID:layout_marginBottom="120dp" androID:background="@drawable/corner_black_bgborder"/></FrameLayout>
显示效果:
FrameLayout中第一个子控件为百度地图,其次为输入框、右边 *** 作按钮与左下方定位按钮。我们可以看到这里很多子控件都使用了一个属性,layout_gravity,正如前面讲解gravity属性提到的一样,layout_gravity用来设置自身相对于父元素的布局,这个属性在FrameLayout布局时会经常使用到,用来控制控件在布局中的位置,layout_gravity常用属性值有top、bottom、left、right、center、center_horizontal、center_vertical,这里的center可以让控件居于FrameLayout的中心布局,属性值可以复合使用,比如我们既要居底部布局又要垂直居中就可以这样设置:“androID:layout_gravity=bottom|center_vertical”。
代码中的 *** 作控件分三个布局位置,顶部的搜索框、右边的 *** 作按钮、左下方的定位按钮。以下为这三部分的讲解:
1、搜索输入框,根据FrameLayout的定义,子控件从布局的左上角开始按照层次堆叠方式布局,这里输入框,我们需要显示在屏幕的上方,所以只需要设置它的上、左、右方向的margin就可以满足我们的设计。这里让输入框水平居中显示的方式是通过设置宽度为match_parent再设置左右方向相同的margin就可以水平居中,当然也可以通过设置一定的宽度后再设置layout_gravity的属性值为center_horizontal。
2、右边 *** 作按钮栏,三个按钮为linearLayout布局,垂直方向线性布局,linearLayout中我们设置“androID :layout_gravity=right”来让实现靠右布局,其次设置margin让控件按照合理的布局显示。
3、定位按钮,这个按钮显示在屏幕的左下方,我们只需要设置“androID :layout_gravity=bottom”,再设置方向的margin让按钮显示在合理的位置。
三、relativeLayout
相对布局可以让子控件相对于兄弟控件或父控件进行布局,可以设置子控件相对于兄弟控件或父控件进行上下左右对齐。relativeLayout能替换一些嵌套视图,当我们用linearLayout来实现一个简单的布局但又使用了过多的嵌套时,就可以考虑使用relativeLayout重新布局。
relativeLayout中子控件常用属性:
1、相对于父控件,例如:androID:layout_alignParenttop=“true”
androID:layout_alignParenttop 控件的顶部与父控件的顶部对齐;
androID:layout_alignParentBottom 控件的底部与父控件的底部对齐;
androID:layout_alignParentleft 控件的左部与父控件的左部对齐;
androID:layout_alignParentRight 控件的右部与父控件的右部对齐;
2、相对给定ID控件,例如:androID:layout_above=“@ID/**”
androID:layout_above 控件的底部置于给定ID的控件之上;
androID:layout_below 控件的底部置于给定ID的控件之下;
androID:layout_toleftOf 控件的右边缘与给定ID的控件左边缘对齐;
androID:layout_toRightOf 控件的左边缘与给定ID的控件右边缘对齐;
androID:layout_alignBaseline 控件的baseline与给定ID的baseline对齐;
androID:layout_aligntop 控件的顶部边缘与给定ID的顶部边缘对齐;
androID:layout_alignBottom 控件的底部边缘与给定ID的底部边缘对齐;
androID:layout_alignleft 控件的左边缘与给定ID的左边缘对齐;
androID:layout_alignRight 控件的右边缘与给定ID的右边缘对齐;
3、居中,例如:androID:layout_centerInParent=“true”
androID:layout_centerHorizontal 水平居中;
androID:layout_centerVertical 垂直居中;
androID:layout_centerInParent 父控件的中央;
应用实例:
<?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"> <relativeLayout androID:layout_wIDth="match_parent" androID:layout_height="50dp" androID:background="@drawable/topbar_bg_border"> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_centerInParent="true" androID:text="标题" androID:textSize="19sp" androID:textStyle="bold" androID:textcolor="#4e6288"/> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_centerVertical="true" androID:layout_alignParentRight="true" androID:layout_marginRight="15dp" androID:text="取消" androID:textSize="18sp"/> </relativeLayout></linearLayout>
显示结果:
这是一个顶部布局样式,在很多app中我们会考虑使用样式基本相同的顶部布局来统一风格。这只是一个简单的布局,包含一个Title以及取消按钮(这里用的TextVIEw代替),相对于其他几个布局控件,relativeLayout在这里使用起来更简单也更合理。首先设置relativeLayout的高度,再设置Title的androID:layout_centerInParent=”true”显示在中央,最后设置取消按钮的两个属性垂直居中androID:layout_centerVertical=”true”和右部对齐androID:layout_alignParentRight=”true”。
四、absoluteLayout
绝对布局也叫坐标布局,指定控件的绝对位置,简单直接,直观性强,但是手机屏幕尺寸差别较大,适应性差,AndroID 1.5已弃用,可以用relativeLayout替代。
absoluteLayout实现布局代码:
<?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"> <ImageVIEw androID:layout_wIDth="100dip" androID:layout_height="120dip" androID:layout_x="150dip" androID:layout_y="40dip" androID:src="@drawable/androID_logo"/> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_x="100dip" androID:layout_y="150dip" androID:text="上一张"/> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_x="200dip" androID:layout_y="150dip" androID:text="下一张"/> </absoluteLayout>
显示效果:
这里为了设计一个图片浏览的效果,将各个控件的layout_x与layout_y依次设置了一遍,然而当前屏幕尺寸能正常显示,其他屏幕就需要重新制定布局。其实用relativeLayout轻松就能实现这样的效果,还不用考虑屏幕兼容性。 所以,absoluteLayout已成为androID布局中的历史。
五、tableLayout
表格布局继承自linearLayout,通过tableRow设置行,列数由tableRow中的子控件决定,直接在tableLayout中添加子控件会占据整个一行。
tableLayout常用属性:
androID:shrinkColumns:设置可收缩的列,内容过多就收缩显示到第二行
androID:stretchColumns:设置可伸展的列,将空白区域填充满整个列
androID:collapseColumns:设置要隐藏的列
列的索引从0开始,shrinkColumns和stretchColumns可以同时设置。
子控件常用属性:
androID:layout_column:第几列
androID:layout_span:占据列数
tableLayout实例代码:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:orIEntation="vertical" androID:layout_wIDth="match_parent" androID:layout_height="match_parent"> <linearLayout androID:layout_wIDth="match_parent" androID:layout_height="50dp" androID:gravity="center"> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="首页"/> </linearLayout> <linearLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:layout_weight="1" androID:gravity="center"> <tableLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:stretchColumns="0,1,2" androID:gravity="center"> <tableRow> <TextVIEw androID:layout_wIDth="100dp" androID:layout_height="100dp" androID:layout_margin="5dp" androID:background="#e2a617" androID:text="文件管理" androID:gravity="center"/> <TextVIEw androID:layout_wIDth="100dp" androID:layout_height="100dp" androID:layout_margin="5dp" androID:background="#0d637f" androID:text="应用商店" androID:gravity="center"/> <TextVIEw androID:layout_wIDth="100dp" androID:layout_height="100dp" androID:layout_margin="5dp" androID:background="#aa2266" androID:text="文件管理" androID:gravity="center"/> </tableRow> <tableRow> <TextVIEw androID:layout_wIDth="100dp" androID:layout_height="100dp" androID:layout_margin="5dp" androID:background="#45e15f" androID:text="应用管理" androID:gravity="center"/> <TextVIEw androID:layout_wIDth="200dp" androID:layout_height="100dp" androID:layout_margin="5dp" androID:background="#3924a4" androID:text="应用中心" androID:gravity="center" androID:layout_span="2"/> </tableRow> </tableLayout> </linearLayout> <tableLayout androID:layout_wIDth="match_parent" androID:layout_height="55dp" androID:background="#f5f5f5" androID:stretchColumns="0,2,3" androID:gravity="center_vertical"> <tableRow> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:gravity="center" androID:text="首页" /> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:gravity="center" androID:text="消息" /> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:gravity="center" androID:text="发现" /> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:gravity="center" androID:text="我" /> </tableRow> </tableLayout></linearLayout>
显示效果:
屏幕中心是一个类似Material布局,底部是一个页面切换的导航栏。底部布局通过设置androID:stretchColumns=”0,3″来让四个按钮同样大小显示并填充到整个宽度,中心区域主要使用androID:stretchColumns=”0,2″填充显示以及androID:layout_span=”2″控制大内容跨列显示。
布局在AndroID界面中相当于建筑物的框架,在开发中我们需要运用多种布局来实现界面显示需求,只有了解了各种布局的显示样式与它们之间的差距,我们才能驾轻就熟、合理的布局界面。
总结以上是内存溢出为你收集整理的Android五大布局与实际应用详解全部内容,希望文章能够帮你解决Android五大布局与实际应用详解所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)