-
11
-
12 android:layout_width=“fill_parent”>
-
13
-
14
-
15 <LinearLayout android:id=“@+id/linearLayout1”
-
16
-
17 android:layout_height=“fill_parent”
-
18
-
19 android:layout_width=“fill_parent”
-
20
-
21 android:gravity=“right”>
-
22 <Button android:id=“@+id/button2”
-
23
-
24 android:text=“Button”
-
25
-
26 android:layout_width=“wrap_content”
-
27
-
28 android:layout_height=“wrap_content”>
-
29 <Button android:text=“Button”
-
30
-
31 android:id=“@+id/button1”
-
32
-
33 android:layout_width=“wrap_content”
-
34
-
35 android:layout_height=“wrap_content”>
-
36
-
37
复制代码
最外层布局为垂直线性布局,宽度为整个屏幕(fill_parent),高度为刚好适合子控件(wrap_content)。然后依次添加一个EditText,一个水平布局的LinearLayout,在这个线性布局里面,摆放两个Button,该线性布局的gravity属性设置为”right”,所以里面的两个Button靠右显示。
二,TableLayout(表格布局)
把子元素放入到行与列中
不显示行、列或是单元格边界线
单元格不能横跨行,如HTML中一样
表格布局模型以行列的形式管理子控件,每一行为一个TableRow的对象,当然也可以是一个View的对象。TableRow可以添加子控件,每添加一个为一列。
android:layout_colum官方解释:The index of the column in which this child should be,也即是设置该控件在TableRow中所处的列。
android:layout_span官方解释:Defines how many columns this child should span,也即是设置该控件所跨越的列数。
android:collapseColumns官方解释:The 0 based index of the columns to collapse. The column indices must be separated by a comma: 1, 2, 5.也即是将TableLayout里面指定的列隐藏,若有多列需要隐藏,请用逗号将需要隐藏的列序号隔开。
android:stretchColumns官方解释:The 0 based index of the columns to stretch. The column indices must be separated by a comma: 1, 2, 5. You can stretch all columns by using the value “*” instead. Note that a column can be marked stretchable and shrinkable at the same time.也即是设置指定的列为可伸展的列,可伸展的列会尽量伸展以填满所有可用的空间,若有多列需要设置为可伸展,请用逗号将需要伸展的列序号隔开。
android:shrinkColumns官方解释:The 0 based index of the columns to shrink. The column indices must be separated by a comma: 1, 2, 5. You can shrink all columns by using the value “*” instead. 设置指定的列为可收缩的列。当可收缩的列太宽以至于让其他列显示不全时,会纵向延伸空间。当需要设置多列为可收缩时,将列序号用逗号隔开。
下面用一个例子简单说明TableLayout的用法:
-
01 <?xml version="1.0" encoding="utf-8"?>
-
02 <TableLayout xmlns:android=“http://schemas.android.com/apk/res/android”
-
03 android:layout_width=“fill_parent”
-
04 android:layout_height=“fill_parent”
-
05 android:stretchColumns=“1”>
-
06
-
07 <TextView
-
08 android:layout_column=“1”
-
09 android:padding=“3dip” android:text=“Row1”/>
-
10 <TextView
-
11 android:text=“1”
-
12 android:gravity=“right”
-
13 android:padding=“3dip” />
-
14
-
15 <View
-
16 android:layout_height=“2dip”
-
17 android:background=“#FF909090” />
-
18
-
19 <TextView
-
20 android:text=“*”
-
21 android:padding=“3dip” />
-
22 <TextView
-
23 android:text=“Row12”
-
24 android:padding=“3dip” />
-
25 <TextView
-
26 android:text=“2”
-
27 android:gravity=“right”
-
28 android:padding=“3dip” />
-
29
-
30 <View
-
31 android:layout_height=“2dip”
-
32 android:background=“#FF909090” />
-
33
-
34 <TextView
-
35 android:layout_column=“1”
-
36 android:text=“Row13”
-
37 android:padding=“3dip” />
-
38
-
39
复制代码
三、RelativeLayout(相对布局)
相对布局的子控件会根据它们所设置的参照控件和参数进行相对布局。参照控件可以是父控件,也可以是其它子控件,但是被参照的控件必须要在参照它的控件之前定义。下面是一个简单的例子:
-
01 <?xml version="1.0" encoding="utf-8"?>
-
02 <?xml version="1.0" encoding="utf-8"?>
-
03 <RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”
-
04 android:layout_width=“fill_parent”
-
05 android:layout_height=“fill_parent”
-
06 >
-
07 <AnalogClock
-
08 android:id=“@+id/aclock”
-
09 android:layout_width=“wrap_content”
-
10 android:layout_height=“wrap_content”
-
11 android:layout_centerInParent=“true” />
-
12 <DigitalClock
-
13 android:id=“@+id/dclock”
-
14 android:layout_width=“wrap_content”
-
15 android:layout_height=“wrap_content”
-
16 android:layout_below=“@id/aclock”
-
17 android:layout_alignLeft=“@id/aclock”
-
18 android:layout_marginLeft=“40px” />
-
19 <TextView
-
20 android:layout_width=“wrap_content”
-
21 android:layout_height=“wrap_content”
-
22 android:text=“当前时间:”
-
23 android:layout_toLeftOf=“@id/dclock”
-
24 android:layout_alignTop=“@id/aclock”/>
-
25
复制代码
四、AbsoluteLayout(绝对布局)
绝对布局的子控件需要指定相对于此坐标布局的横纵坐标值,否则将会像框架布局那样被排在左上角。手机应用需要适应不同的屏幕大小,而这种布局模型不能自适应屏幕尺寸大小,所以应用的相对较少。下面以一个例子简单说明绝对布局:
-
01 <?xml version="1.0" encoding="utf-8"?>
-
02 <AbsoluteLayout xmlns:android=“http://schemas.android.com/apk/res/android”
-
03 android:layout_width=“fill_parent”
-
04 android:layout_height=“fill_parent”
-
05 >
-
06 <TextView
-
07 android:layout_width=“wrap_content”
-
08 android:layout_height=“wrap_content”
-
09 android:layout_x=“10px”
-
10 android:layout_y=“10px” android:text=“Textview”/>
-
11 <TextView
-
12 android:layout_width=“wrap_content”
-
13 android:layout_height=“wrap_content”
-
14 android:layout_x=“30px”
-
15 android:layout_y=“30px” android:text=“Textview”/>
-
16 <TextView
-
17 android:layout_width=“wrap_content”
最后
以前一直是自己在网上东平西凑的找,找到的东西也是零零散散,很多时候都是看着看着就没了,时间浪费了,问题却还没得到解决,很让人抓狂。
后面我就自己整理了一套资料,还别说,真香!
资料有条理,有系统,还很全面,我不方便直接放出来,大家可以先看看有没有用得到的地方吧。
加入社区》https://bbs.csdn.net/forums/4304bb5a486d4c3ab8389e65ecb71ac0
droid:layout_width=“wrap_content”
最后
以前一直是自己在网上东平西凑的找,找到的东西也是零零散散,很多时候都是看着看着就没了,时间浪费了,问题却还没得到解决,很让人抓狂。
后面我就自己整理了一套资料,还别说,真香!
资料有条理,有系统,还很全面,我不方便直接放出来,大家可以先看看有没有用得到的地方吧。
[外链图片转存中…(img-3IIMkf7q-1725705090459)]
[外链图片转存中…(img-dFYWHEv1-1725705090459)]
[外链图片转存中…(img-6hS3wffD-1725705090459)]
[外链图片转存中…(img-bHWLm157-1725705090460)]
[外链图片转存中…(img-a6C1F0jj-1725705090460)]
[外链图片转存中…(img-zpkxKP9b-1725705090460)]
加入社区》https://bbs.csdn.net/forums/4304bb5a486d4c3ab8389e65ecb71ac0