android layout 界面开发,步步为营_Android开发课[14]_用户界面之Layout(布局)

主题:用户界面之Layout(布局)

-在Android开发中我们有传说中的5大布局,它们的结合使用,画出了APP界面的条条框框。

Android中常用的5大布局:

线性布局(LinearLayout):按照垂直或者水平方向布局的组件。

帧布局(FrameLayout):组件从屏幕左上方布局组件。

表格布局(TableLayout):按照行列方式布局组件。

相对布局(RelativeLayout):相对其它组件的布局方式。

绝对布局(AbsoluteLayout):按照绝对坐标来布局组件。

各种布局之间的关系图:

02_layout.jpg

1.线性布局(LinearLayout):

线性布局是Android开发中最常见的一种布局方式,它是按照垂直或者水平方向来布局,通过“android:orientation”属性可以设置线性布局的方向。属性值有垂直(vertical)和水平(horizontal)两种。

main.xml源代码:

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

android:orientation="horizontal"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

>

android:layout_height="wrap_content"

android:layout_width="fill_parent"

android:background="#005588"

android:layout_weight="1"

/>

android:layout_height="wrap_content"

android:layout_width="fill_parent"

android:background="#337799"

android:layout_weight="1"

/>

android:layout_height="wrap_content"

android:layout_width="fill_parent"

android:background="#227508"

android:layout_weight="1"

/>

android:layout_height="wrap_content"

android:layout_width="fill_parent"

android:background="#545729"

android:layout_weight="1"

/>

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

>

android:layout_height="wrap_content"

android:layout_width="fill_parent"

android:background="#234235"

/>

android:layout_height="wrap_content"

android:layout_width="fill_parent"

android:background="#865321"

/>

运行结果:

f2a4bacfc627de65f0e39c7d6d07a74f.png

2.帧布局(FrameLayout):

帧布局是从屏幕的左上角(0,0)坐标开始布局,多个组件层叠排列,第一个添加的组件放到最底层,最后添加到框架中的视图显示在最上面。上一层的会覆盖下一层的控件。

mian.xml源代码:

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

android:layout_width="300dp"

android:layout_height="300dp"

android:background="#114488"

/>

android:layout_width="250dp"

android:layout_height="250dp"

android:background="#225599"

/>

android:layout_width="200dp"

android:layout_height="200dp"

android:background="#337700"

/>

运行结果:

ea4a4eaa99b76e95c106de3dcb6bc557.png

3.表格布局(TableLayout):

表格布局是一个ViewGroup以表格显示它的子视图(view)元素,即行和列标识一个视图的位置。

表格布局常用的属性如下:

android:collapseColumns:隐藏指定的列

android:shrinkColumns:收缩指定的列以适合屏幕,不会挤出屏幕

android:stretchColumns:尽量把指定的列填充空白部分

android:layout_column:控件放在指定的列

android:layout_span:该控件所跨越的列数

mian.xml源代码:

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:shrinkColumns="0,1,2"

>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button1"

android:layout_column="0"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button2"

android:layout_column="1"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button3"

android:layout_column="1"

/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Button4"

android:layout_column="2"

/>

运行结果:

dba126a0c8eeb6240afb7f257f0b4e8e.png

4.相对布局(RelativeLayout):

相对布局是按照组件之间的相对位置来布局,比如相对于某个组件的上,下,左,右或者相对于父布局的上,下,左,右。

mian.xml源代码:

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:padding="10px"

>

android:id="@+id/tev1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginBottom="30dp"

android:text="嘟嘟跑哪里去了:"

/>

android:id="@+id/tx1"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_below="@id/tev1"

/>

android:id="@+id/btn1"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:layout_below="@id/tx1"

android:layout_alignParentRight="true"

android:text="确定"

/>

android:id="@+id/btn2"

android:layout_height="wrap_content"

android:layout_width="wrap_content"

android:layout_below="@id/tx1"

android:layout_toLeftOf="@id/btn1"

android:layout_marginRight="30dp"

android:text="取消"

/>

运行结果:

184b1b338e300da937eefce0af8d557e.png

绝对布局(AbsoluteLayout):

绝对布局不能满足适配各种不同尺寸的机型,逐渐地被淘汰,已经没人使用了哟!大家不用学了哟,好高兴^_^!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值