但使书种多,会有岁稔时。这篇文章主要讲述Android基础TOP3:线性布局的特点,常用属性,及权重值相关的知识,希望能为你提供帮助。
线性布局是一种让视图水平或者垂直布排列的布局;
常用属性:
androuid:orientation :表示布局方向
- 取值vertical表示垂直布局
- 取值horizontal表示水平布局
- 内容包括 TOP,bottom,left,right,center_vertical,center_horizontal,center
- 可以使用“|”分割填写多个值
android:layout_gravity 表示单个视图的对齐方式
android:layout_weight 表示单个视图所在大小的比重
- 当Layout_weight为0时候视图大小自身确定
- 当layout_weight大于0时,视图在线性布局方向根据比重拉伸
1 < ?xml version="1.0" encoding="utf-8"?> 2 < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3android:layout_width="match_parent" 4android:layout_height="match_parent" 5android:orientation="horizontal" > 6< Button 7android:layout_width="200dp" 8android:layout_height="100dp" 9android:text="adaflkjn" 10android:gravity="bottom|center_horizontal"/> 11 12 < /LinearLayout>
文章图片
android:gravity:是决定控件内元素在某个位置
< Button android:layout_width="200dp" android:layout_height="100dp" android:text="adaflkjn" android:layout_gravity="center"/>
文章图片
android:layout_gravity是本元素在父元素里面显示的位置weight的应用
< EditText android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:hint="sdaf"/> < Button android:layout_width="1dp" android:layout_height="wrap_content" android:layout_weight="0" android:text="klndgjl" />
【Android基础TOP3(线性布局的特点,常用属性,及权重值)】
文章图片
< TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0" android:text="weight为0" android:background="#FFF0F5" /> < TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="weight为1" android:layout_weight="1" android:background="#800080" /> < TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="weight为4" android:layout_weight="4" android:background="#4B0082" />
文章图片
推荐阅读
- Android-事件分发(ViewGroup)
- Unity发布安卓Splash Image适应手机平板
- Android基础TOP3(Activity的线性,相对,帧和表格布局的概括)
- Android基础TOP2(单机按钮改变字体颜色)
- Eclipse下载和Android环境搭建
- Android开发之《硬件加速》
- There is no Action mapped for namespace / and action name通配符的问题
- SpringTest框架JUnit单元测试用例获取ApplicationContext实例的方法
- 如何运用WPS演示插入项目符号与编号_WPS office