




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
第Android四种常见布局方式示例教程目录一、线性布局LinearLayout有两种排序方式线性布局的权重二、相对布局RelativeLayout相对位置的取值三、网格布局GridLayout四、滚动视图ScrollView
一、线性布局LinearLayout
有两种排序方式
orientation属性值为horizontal时,内部视图在水平方向从左往右排列。orientation属性值为vertical时,内部视图在垂直方向从上往下排列。
如果不指定orientation属性,则LinearLayout默认水平方向排列。
线性布局的权重
指线性布局的下级视图各自拥有多大比例的宽高。
属性名为layout_weight,但该属性不在LinearLayout节点设置,而在线性布局的直接下级视图设置,表示改下级视图占据的宽高比例。
layout_width为0dp时,表示水平方向的宽度比例layout_height为0dp时,表示垂直方向的高度比例
例:
第一个线性布局:width=0dp说明在水平方向设置宽度比例,weight=1,占据weight总数的1/2,则占据一半空间。
第二个线性布局:height=0dp说明在垂直方向设置宽度比例,weight=1,占据weight总数的1/3,则占据三分之一空间。
LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
TextView
android:layout_width="0dp"//宽度为0dp,通过权重设置宽度比例
android:layout_height="wrap_content"
android:layout_weight="1"//weight为1,下面的weight也为1,占1/2,即宽度比例占1/2
android:text="横排第一个"
android:textSize="17sp"
android:textColor="#000000"/
TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="横排第二个"
android:textSize="17sp"
android:textColor="#000000"/
/LinearLayout
LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
TextView
android:layout_width="wrap_content"
android:layout_height="0dp"//高度为0dp,通过权重设置高度比例
android:layout_weight="1"//weight为1,下面的weight为2,占1/3,即宽度比例占1/3
android:text="竖排第一个"
android:textSize="17sp"
android:textColor="#000000"/
TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="2"
android:text="竖排第二个"
android:textSize="17sp"
android:textColor="#000000"/
/LinearLayout
二、相对布局RelativeLayout
相对布局的视图位置由平级或上级视图决定,用于确定下级视图位置的参考物分两种:
与该视图自身平级的视图该视图的上级视图
如果不设定下级视图的参照物,那么下级视图默认显示在RelativeLayout内部的左上角。
相对位置的取值
例:
TextView
android:id="@+id/tv_center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_centerInParent="true"
android:text="中间"
android:textSize="11sp"
android:textColor="#000000"/
TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_centerHorizontal="true"
android:text="水平中间"
android:textSize="11sp"
android:textColor="#000000"/
TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_centerVertical="true"
android:text="垂直中间"
android:textSize="11sp"
android:textColor="#000000"/
TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_alignParentLeft="true"
android:text="上级左边对齐"
android:textSize="11sp"
android:textColor="#000000"/
TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_toLeftOf="@id/tv_center"
android:layout_alignTop="@id/tv_center"
android:text="中间左边"
android:textSize="11sp"
android:textColor="#000000"/
TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
android:layout_above="@id/tv_center"
android:layout_alignLeft="@id/tv_center"
android:text="中间上边"
android:textSize="11sp"
android:textColor="#000000"/
三、网格布局GridLayout
网格布局支持多行多列的表格排列。
网格布局默认从左往右、从上到下排列,新增两个属性:
columnCount属性:指定网格的列数,即每行能放多少视图。rowCount属性:指定网格行数,即每列能放多少视图。
例:
xmlversion="1.0"encoding="utf-8"
GridLayoutxmlns:android="/apk/res/android"
xmlns:app="/apk/res-auto"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:rowCount="2"
TextView
android:layout_width="0dp"//设置权重,占满屏幕
android:layout_columnWeight="1"
android:layout_height="60dp"
android:background="#ffcccc"
android:text="浅红色"
android:gravity="center"//设置文字位于网格中间
android:textColor="#000000"
android:textSize="17sp"/
TextView
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_columnWeight="1"
android:background="#ffaa00"
android:text="浅红色"
android:gravity="center"
android:textColor="#000000"
android:textSize="17sp"/
TextView
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_columnWeight="1"
android:background="#00ff00"
android:text="绿色"
android:gravity="center"
android:textColor="#000000"
android:textSize="17sp"/
TextView
android:layout_width="0dp"
android:layout_height="60dp"
android:layout_columnWeight="1"
android:background="#660066"
android:text="深紫色"
android:gravity="center"
android:textColor="#000000"
android:textSize="17sp"/
/GridLayout
四、滚动视图ScrollView
有两种:
ScrollView:垂直方向的滚动视图,垂直方向滚动时,layout_width属性值设置为match_parent,layout_height属性值设置为wrap_content。HorizontalScrollView:水平方向的滚动视图,水平方向滚动时,layout_width属性值设置为wrap_content,layout_height属性值设置为match_parent。
例:
水平方向两个View共600dp,超出屏幕,所以上级视图使用HorizontalScrollView,宽度自适应,高度跟随上级视图。
xmlversion="1.0"encoding="utf-8"
LinearLayoutxmlns:android="/apk/res/android"
xmlns:app="/apk/res-auto"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="200dp"
!--水平方向的线性布局--
LinearLayout
android:layout_width="wrap_content"//宽度自适应
android:layout_height="match_parent"//高度跟随上级视图
android:orientation="horizontal"//水平排列
View
android:layout_width="300dp"//宽度自定义,超出屏幕
android:layout_height="match_parent"
android:background="#aaffff"/
View
and
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 高新专项人员管理办法
- 数字签名技术在工业互联网平台边缘计算中的应用与创新报告
- 2025年远程医疗服务模式与医联体建设研究报告
- 金融科技对传统金融机构风险管理的影响与应对策略研究报告
- 预制楼梯施工管理办法
- DB4416T 37-2025 五指毛桃加工技术规程
- 门面施工扬尘管理办法
- 机械制造企业2025年服务化转型中的客户需求分析与产品服务创新报告
- 门店健康管理办法细则
- 虚拟现实与数字艺术作品创作融合趋势研究报告
- (高清版)DB11∕T2333-2024危险化学品生产装置和储存设施长期停用安全管理要求
- 安徽省2024年普通高校招生普通高职(专科)提前批院校投档分数及名次
- 重庆市地图矢量动态模板图文
- 边缘智能计算应用课件:NLE-AI800开发板介绍及案例体验
- LY/T 2005-2024国家级森林公园总体规划规范
- 苏州工业园区企业名录
- 华住收益管理
- 禾香板项目可行性研究报告
- 颈椎病康复护理常规
- 2024年度学校供水设施建设及改造合同3篇
- DB32T 3390-2018 一体化智能泵站应用技术规范
评论
0/150
提交评论