Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1455965
  • 博文数量: 267
  • 博客积分: 3010
  • 博客等级: 少校
  • 技术积分: 3089
  • 用 户 组: 普通用户
  • 注册时间: 2011-06-05 17:09
个人简介

尊天命,尽人事

文章分类

全部博文(267)

文章存档

2017年(6)

2015年(4)

2014年(27)

2013年(52)

2012年(59)

2011年(120)

分类: 嵌入式

2012-12-29 13:47:35

转自:http://www.cnblogs.com/zhmore/archive/2011/11/04/2236514.html

在android开发中LinearLayout很常用,LinearLayout的内控件的android:layout_weight在某些场 景显得非常重要,比如我们需要按比例显示。android并没用提供table这样的控件,虽然有TableLayout,但是它并非是我们想象中的像 html里面的table那么好用,我们常用ListView实现table的效果,但是列对齐确比较麻烦,现在用LinearLayout及属性 android:layout_weight能很好地解决。下面我们共同体验下layout_weight这个属性。

  一、LinearLayout内的控件的layout_width设置为"wrap_content",请看一下xml配置:

复制代码
<LinearLayout
android:orientation="horizontal"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1"
>
<TextView
android:layout_width="wrap_content"
android:layout_height
="fill_parent"
android:layout_weight
="1"
android:background
="#aa0000"
android:gravity
="center"
android:text
="1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height
="fill_parent"
android:layout_weight
="2"
android:background
="#00aa00"
android:gravity
="center"
android:text
="1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height
="fill_parent"
android:layout_weight
="3"
android:background
="#0000aa"
android:gravity
="center"
android:text
="1"/>
LinearLayout>
复制代码

 效果如下:

可以看到这三个TextView是按照1:2:3的比例进行显示的,这样看来似乎可以实现按照比例显示了,但是有个问题,如果TextView内的文本长度一同那么较长文本的TextView会宽度会有所增加,见下面配置及效果:

配置:

复制代码
<LinearLayout
android:orientation="horizontal"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1">
<TextView
android:layout_width="wrap_content"
android:layout_height
="fill_parent"
android:layout_weight
="1"
android:background
="#aa0000"
android:gravity
="center"
android:text
="1111111111111111111111111111111111111111111"/>
<TextView
android:layout_width="wrap_content"
android:layout_height
="fill_parent"
android:layout_weight
="2"
android:background
="#00aa00"
android:gravity
="center"
android:text
="2"/>
<TextView
android:layout_width="wrap_content"
android:layout_height
="fill_parent"
android:layout_weight
="3"
android:background
="#0000aa"
android:gravity
="center"
android:text
="3"/>
LinearLayout>
复制代码

效果:

这样看来我们所需要的按比例又无法实现了,经过满天地google终于找到了解决方案,就是设置layout_width设置为"wrap_content"。配置及效果见下:

复制代码
<LinearLayout
android:orientation="horizontal"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1">
<TextView
android:layout_width="0dp"
android:layout_height
="fill_parent"
android:layout_weight
="1"
android:background
="#aa0000"
android:gravity
="center"
android:text
="1111111111111111111111111111111111111111111"/>
<TextView
android:layout_width="0dp"
android:layout_height
="fill_parent"
android:layout_weight
="2"
android:background
="#00aa00"
android:gravity
="center"
android:text
="2"/>
<TextView
android:layout_width="0dp"
android:layout_height
="fill_parent"
android:layout_weight
="3"
android:background
="#0000aa"
android:gravity
="center"
android:text
="3"/>
LinearLayout>
复制代码

效果:

这样终于达到我们的按比例显示的效果了,感觉很是奇怪,android开发框架的大佬们有时候设计确实有点匪夷所思。

  二、LinearLayout内的控件的layout_width设置为"fill_parent",请看一下xml配置:

复制代码
<LinearLayout
android:orientation="horizontal"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1">
<TextView
android:layout_width="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1"
android:background
="#aa0000"
android:gravity
="center"
android:text
="1"/>
<TextView
android:layout_width="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="2"
android:background
="#00aa00"
android:gravity
="center"
android:text
="2"/>
LinearLayout>


效果如下:

奇怪吧,整个宽度平分3块,第一个TextView占了两块,这样看来weight值越小的优先级越大。只有两个TextView似乎看出些道理,那么让我们看看三个是什么效果:

复制代码
<LinearLayout
android:orientation="horizontal"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1">
<TextView
android:layout_width="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="1"
android:background
="#aa0000"
android:gravity
="center"
android:text
="1"/>
<TextView
android:layout_width="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="2"
android:background
="#00aa00"
android:gravity
="center"
android:text
="2"/>
<TextView
android:layout_width="fill_parent"
android:layout_height
="fill_parent"
android:layout_weight
="3"
android:background
="#0000aa"
android:gravity
="center"
android:text
="3"/>
LinearLayout>
复制代码

效果:

什么意思?第三个TextView丢掉了,很是奇怪,让我们再试一个,把weight分别改为2,3,4的看看效果:

这个效果让人很困惑,我一直想寻求出一个确切的比例公式,但是至今未找到。有哪位大神能搞定的话忘不吝赐教。

虽然这个android:layout_weight属性很怪异,但幸运的是我们达到了目标:

  按比例显示LinearLayout内各个子控件,需设置android:layout_width="0dp",如果为竖直 方向的设置android:layout_height="0dp"。在这种情况下某子个控件占用LinearLayout的比例为:本控件weight 值 / LinearLayout内所有控件的weight值的和。


LinearLayout中的layout_weight属性

 

 

布局LinearLayout代码

 

Xml代码  收藏代码
  1. xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android=""  
  3.     android:orientation="vertical"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent"  
  6.     >    
  7. <Button  
  8.       android:layout_width="fill_parent"  
  9.       android:layout_height="fill_parent"  
  10.       android:text="Button1"  
  11.       android:background="#008000"  
  12.       android:layout_weight="0"  
  13. />  
  14. <Button  
  15.       android:layout_width="fill_parent"  
  16.       android:layout_height="fill_parent"  
  17.       android:text="Button2"  
  18.       android:background="#FFFF00"  
  19.       android:layout_weight="0"  
  20. />  
  21. LinearLayout>  

 

layout_weight属性如果没有设置,则默认为0.

 

 

按钮1:button1,绿色

按钮2:button2,黄色

 

下面以按钮1和按钮2的weight属性(layout_weight)的变化,分别进行记录。

 

 

这里测试的是垂直布局android:orientation="vertical",所以针对组件的 android:layout_height属性;如果测试的水平布局,则需针对组件的 android:layout_width属性。

 

 

(一) android:layout_height = "fill_parent"

 

 


  button1(weight=0) button2(weight=0)   button1(weight=0) button2(weight=1)


 


 

button1(weight=1) button2(weight=1)

button1占1/2,button2占1/2

button1(weight=1) button2(weight=2)

button1占2/3,button2占1/3



 


 

button1(weight=1) button2(weight=9)

button1占9/10,button2占1/10

button1(weight=1) button2(weight=30)

button1占30/31,button2占1/31



 

 

(二) android:layout_height = "wrap_content"

 



 


 

button1(weight=0) button2(weight=0)

button1(weight=0) button2(weight=1)


 


 

button1(weight=1) button2(weight=1)

button1占1/2,button2占1/2

button1(weight=1) button2(weight=2)

button1占1/3,button2占2/3



 


 

button1(weight=1) button2(weight=9)

 

button1(weight=1) button2(weight=30)

 





 

通过以上实验可知:

(一) android:layout_height = "fill_parent"

(二) android:layout_height = "wrap_content"

在(一)、(二)2种情况在相同的weight属性下呈现出正好相反的情况。




阅读(1332) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~