赞
踩
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <!-- 这个是在容器中央的 --> <ImageView android:id="@+id/img1" android:layout_width="80dp" android:layout_height="80dp" android:layout_centerInParent="true" android:src="@drawable/huawei"/> <!-- 在中间图片的左边 --> <ImageView android:id="@+id/img2" android:layout_width="80dp" android:layout_height="80dp" android:layout_toLeftOf="@id/img1" android:layout_centerVertical="true" android:src="@drawable/csdn"/> <!-- 在中间图片的右边 --> <ImageView android:id="@+id/img3" android:layout_width="80dp" android:layout_height="80dp" android:layout_toRightOf="@id/img1" android:layout_centerVertical="true" android:src="@drawable/bz"/> <!-- 在中间图片的上面--> <ImageView android:id="@+id/img4" android:layout_width="80dp" android:layout_height="80dp" android:layout_above="@id/img1" android:layout_centerHorizontal="true" android:src="@drawable/flower"/> <!-- 在中间图片的下面 --> <ImageView android:id="@+id/img5" android:layout_width="80dp" android:layout_height="80dp" android:layout_below="@id/img1" android:layout_centerHorizontal="true" android:src="@drawable/linux"/> </RelativeLayout>
以中间的logo为参考,来确定其它logo的位置的这样的一个布局方式。
有点类似web里面的浮动布局,使用weight设置权重来实现对窗体的一个分配效果。
布局设计:
<?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"> <!-- weight设置权重--> <TextView android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="one" android:background="#98FB98" /> <TextView android:layout_weight="2" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="two" android:background="#FFFF00" /> <TextView android:layout_weight="3" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="three" android:background="#FF00FF" /> </LinearLayout>
设计实例
根据layout_weight三个子组件在父容器中的分配空间会是1:2:3
android:collapseColumns
:设置需要被隐藏的列的序号
android:shrinkColumns
: 设置允许被收缩的列的列序号
android:stretchColumns
:设置运行被拉伸的列的列序号
以上这三个属性的列号都是从0开始算的,比如shrinkColunmns = “2”,对应的是第三列!
可以设置多个,用逗号隔开比如"0,2",如果是所有列都生效,则用"*"号即可
除了这三个常用属性,还有两个属性,分别就是跳格子以及合并单元格,这和HTML中的Table类似:
-android:layout_column="2"
:表示的就是跳过第二个,直接显示到第三个格子处,从1开始算的!
-android:layout_span="4"
:表示合并4个单元格,也就说这个组件占4个单元格
使用android:stretchColumns设置被拉伸的列的序号
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center_vertical" android:stretchColumns="0,3" > <TableRow android:layout_width="match_parent" android:layout_height="match_parent" > <TextView/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="用户名:" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:minWidth="150dp"/> <TextView/> </TableRow> <TableRow android:layout_width="match_parent" android:layout_height="match_parent" > <TextView/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="密码:" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:minWidth="150dp"/> <TextView/> </TableRow> <TableRow android:layout_height="match_parent" android:layout_width="match_parent"> <TextView/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="登录"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="退出"/> <TextView/> </TableRow> </TableLayout>
效果
采用水平线性,考虑设计浮动布局的效果:利用layout_gravity设置left 和right 来实现左右浮动的效果。
而采用垂直线性可以设置左右浮动,却不能保证同行:
<RelativeLayout
android:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<Button android:id="@+id/true_btn" android:background="@drawable/border" android:layout_alignParentLeft="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/true_button"/>
<Button android:id="@+id/false_btn" android:layout_alignParentRight="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/false_button"/>
</RelativeLayout>
使用相对布局:
几个重要的属性
android:columnCount="4"
设置列数为4android:columnCount="6"
设置行数为6android:layout_columnSpan="4"
设置组件独占4列android:layout_rowSpan="2"
设置组件独占两行layout_row
设置位于哪行layout_column
设置位于哪列主要属性:
android:foreground
:设置改帧布局容器的前景图像android:foregroundGravity
:设置前景图像显示的位置Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。