博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
奇葩属性:layout_weight 的解释及使用
阅读量:6592 次
发布时间:2019-06-24

本文共 2004 字,大约阅读时间需要 6 分钟。

在Android的控件布局中,有一个奇葩的 layout_weight 属性,定义如下:

layout_weight : 用于指定剩余空闲空间的分割比例。用法:

01 <LinearLayout
02   android:orientation="horizontal">
03  
04   <TextView
05       android:layout_width="wrap_content"
06       android:layout_height="wrap_height"
07       android:layout_weight="1"
08       android:text="888"/>
09  
10   <TextView
11       android:layout_width="wrap_content"
12       android:layout_height="wrap_height"
13       android:layout_weight="1"
14       android:text="999999"/>
15  
16 </LinearLayout>

为什么说是奇葩呢?

以上面的布局代码为例,TextView-888 和 TextView-999999 是横向排列的2个控件,它们的layout_weight="1",说明这2个控件平分了所在LinearLayout的剩余的空闲空间, 我们很容易的就误认为这2个控件平分了水平方向的空间,即:各自占据了 50% 的宽度。

其实这是错误的,而是:TextView-999999控件所占据的宽度 > TextView-888所占据的宽度。因为999999字符占据的宽度大于888占据的宽度,即:w(999999) + 1/2空闲空间 > w(888) + 1/2空闲空间

这就是它奇葩的地方,很容易就让我们一直误认为是整个控件分割空间。到这里,大家一定会认为,这样的话,layout_weight 这个属性就没有什么意义了,原以为它可以分配空间呢,原来只是分割剩余空闲空间。

其实,呵呵,layout_weight 是可以用来进行整个空间的分割的,如果我们让控件的宽度定义为0,这样比如2个控件的 layout_weight="1" 就可以各自50%平分整个空间了,因为:0 + 1/2空闲空间 = 0 + 1/2空闲空间

这是一个小技巧,也是非常实用的一个实用layout_weight分割方案:定义控件的 layout_width="0dp" 或 layout_height="0dp" 配上 layout_weight 就可以实现对整个空间的比例分割了。

下面定义了2个控件的 layout_width="0dp", layout_weight="1",实现了水平方向50%平均分割:

01 <LinearLayout
02   android:orientation="horizontal">
03  
04   <TextView
05       android:layout_width="0dp"
06       android:layout_height="wrap_height"
07       android:layout_weight="1"
08       android:text="888"/>
09  
10   <TextView
11       android:layout_width="0dp"
12       android:layout_height="wrap_height"
13       android:layout_weight="1"
14       android:text="999999"/>
15  
16 </LinearLayout>

下面定义了2个控件的 layout_height="0dp", layout_weight="1",实现了竖直方向50%平均分割:

01 <LinearLayout
02   android:orientation="vertical">
03  
04   <TextView
05       android:layout_width="wrap_content"
06       android:layout_height="0dp"
07       android:layout_weight="1"
08       android:text="888"/>
09  
10   <TextView
11       android:layout_width="wrap_content"
12       android:layout_height="0dp"
13       android:layout_weight="1"
14       android:text="999999"/>
15  
16 </LinearLayout>

layout_weight 原来是可以这么用滴 

转载于:https://www.cnblogs.com/xiaochao1234/p/3604886.html

你可能感兴趣的文章
用ASP.NET Core 2.1 建立规范的 REST API -- 翻页/排序/过滤等
查看>>
哈默尔的核心竞争力--《可以量化的管理学》
查看>>
Unity中关于作用力方式ForceMode的功能注解
查看>>
view生命周期的一个找父类的控件的方法
查看>>
今天晚上完成期中考试的视频
查看>>
物理读之LRU(最近最少被使用)的深入解析
查看>>
写给将要毕业的学弟学妹们的感言
查看>>
mybatis-ehcache 用法配置备忘
查看>>
Python2.7升级到3.0 HTMLTestrunner报错解决方法
查看>>
Redis介绍以及安装(Linux)
查看>>
FreeBSD下php-mbstring的安装
查看>>
去掉VS2012中的红色波浪下划线
查看>>
[文档]关于接口文档的写法
查看>>
一次tensorflow的尝试
查看>>
家具行业探索:企业管理沟通新模式
查看>>
ReplyError: MISCONF Redis is configured to save RDB snapshots,
查看>>
建立Git版本库管理框架例子
查看>>
nginx防止部分DDOS攻击
查看>>
编写一个截取字符串的函数,输入为一个字符串和字节数,输出为按字节截取的字符串。 但是要保证汉字......
查看>>
number_format() 函数定义和用法
查看>>