我是靠谱客的博主 精明灯泡,最近开发中收集的这篇文章主要介绍android控件容器,android中的五大布局(控件的容器,可以放button等控件),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一.android中五大布局相当于是容器,这些容器里可以放控件也可以放另一个容器,子控件和布局都需要制定属性。

1.相对布局:RelativeLayout

@1控件默认堆叠排列,需要制定控件的相对位置

效果:

6cadc3bb93054937a71beeff4328d849.jpg

2.线性布局:LinearLayout

@1.控件线性排列,分为水平和垂直排列

@2.可以指定背景图片,透明度以及颜色

android:background="@android:color/holo_blue_bright"

垂直效果:

51da2df04d4b46e3bf6303cac65505f3.jpg

水平效果:

45c0b5a9fcb94ea7b97adae2a46a866a.jpg

3.帧布局:FrameLayout

@1控件可以重叠的布局

效果:

6cb51044fd0e4c179f0da891c15cbebc.jpg

4.表格布局:TableLayout

@1控件呈现表格方式排列

@2TableRow用于制定表格的一行

效果:

3506c6a818384964ad521d9dc2230af7.jpg

5.方格布局:GridLayout

@1可以指定控件位于第几行第几列

代码:

1 <?xml version="1.0" encoding="utf-8"?>

2

4 android:layout_width="match_parent"

5 android:layout_height="match_parent">

6

7

8

10 android:layout_width="wrap_content"

11 android:layout_height="wrap_content"

12 android:text="我 "/>

13

14

16 android:layout_width="wrap_content"

17 android:layout_height="wrap_content"

18 android:text="爱 "/>

19

20

22 android:layout_width="wrap_content"

23 android:layout_height="wrap_content"

24 android:text="你"/>

25

26

27

28

30 android:layout_width="wrap_content"

31 android:layout_height="wrap_content"

32 android:text="我 好累"/>

33

34

36 android:layout_width="wrap_content"

37 android:layout_height="wrap_content"

38 android:layout_column="2"

39 android:layout_row="1"

40 android:text="爱 "/>

41

43 android:layout_width="wrap_content"

44 android:layout_height="wrap_content"

45 android:layout_column="1"

46 android:layout_row="3"

47 android:text="你"/>

48

49

50

51

52

效果:

e096d80c87a24d1ca0437a49c405087b.jpg

最后

以上就是精明灯泡为你收集整理的android控件容器,android中的五大布局(控件的容器,可以放button等控件)的全部内容,希望文章能够帮你解决android控件容器,android中的五大布局(控件的容器,可以放button等控件)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部