`
119568242
  • 浏览: 427000 次
  • 性别: Icon_minigender_1
  • 来自: 深圳/湛江
社区版块
存档分类
最新评论

[android]layout_weight 在layout_width 为fill_parent 与wrap_content 时的不同含义

 
阅读更多

 

转自:http://hi.baidu.com/ljlkings/blog/item/fa2a59803f839a82f603a6b2.html?timeStamp=1305190390481

 

 

 

我的话:

简单的说weight代表权重

在layout_width =fill_parent 时

组件填充是要尽可能的大 那么权重重的占领的位置就多。[既1的权重比2大] 最大可达到占领整个父view

 

在layout_width =wrap_contentt 时

组件填充是要尽可能的小 那么权重重的占领的位置就小。[既1的权重比2大,权重大的先选先满足条件]

最小可达到能报纸能容显示的最小

 

 

===========================原文==============

那首先分析一下當layout_width屬性設置為fill_parent的時候,即充滿父佈局,當然意思是這個控件要根據weight的設置盡可能的大,因此,依上例而論,button1的weight設為1,button2的weight設置為2.即button的優先級最高,因此,要填充父佈局就要button1先來填充,盡可能的大,那這個盡可能又是多少呢,這就要綜合layout裡其他控件的weight值了,然後做一下運算,button1佔據2/3,button2佔據1/3.你也可以把button2設置為一個非常大的數,比如2000,此時在Graphical Layout模式下可以看到button1填充滿了整個寬度,而看不到button2的影子,事實上button2還是存在的,你把鼠標指向button1的後面就可以看到一個長長的豎條,那個就是button2,已經非常非常小了。因此,在layout_width設置為fill_parent的時候,weight所代表的是你的控件要優先盡可能的大。

 

 

     接著是當layout_weight設置為wrap_content的時候,即適應內容的寬度,意思是這個控件要盡可能的小,只要能把內容顯示出來就可以了,同樣的,如果把button1和button2的layout_weight設置為wrap_content後,button1的weight為1,button2的weight為2.那麼button1要優先盡可能的小,而button2也要盡可能的小,只是優先級不一樣,因為設置了weight,所以這兩個控件總的寬度要填滿父佈局的寬度,所以就又要計算每個控件所佔據的大小,此時,button1的優先級較高,共有兩份,一份1/3,一份2/3,button1要盡可能的小,那button1當然要選1/3,因此,我們看到的效果反而是button2佔據的較大。這裡要說的是如果把權值同樣做如下設置:button1為1,button2為2000,那button1是不是就要佔據1/2000的空間呢?這麼理解就錯了,剛才說了,要盡可能的小,但這個小是有一個限度的,那就是wrap_content,就是還要是內容完完整整的顯示出來,同樣的,盡可能的大也是有一個限度的,那就是父佈局的寬度。因此,在layout_width設置為wrap_content的時候,weight所代表的是你的控件要優先盡可能的大。

所以,要對weight做了解,要深深的理解下面兩句話:

在layout_width設置為fill_parent的時候,layout_weight所代表的是你的控件要優先盡可能的大,但這個大是有限度的,即fill_parent.

在layout_width設置為wrap_content的時候,layout_weight所代表的是你的控件要優先盡可能的小,但這個小是有限度的,即wrap_content.

layout_height 同 layout_width.

分享到:
评论

相关推荐

    计算器(android)

    <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1"> <Button android:id="@+id/mButton5" android:layout_...

    Android_布局详解

    android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_weight="1"/> android:text="green" android:gravity="center_horizontal" android:background="#00aa00" ...

    Android的Layout完全介绍

    android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView 1" /> android:layout_below="@id/textView1" android:layout_width="wrap_content" android:layout_...

    Android中的android:layout_weight使用详解

    相反,如果两个`Button`的`layout_width`都设置为`wrap_content`,则`Button1`和`Button2`会先根据自身的文字内容决定宽度,然后根据`layout_weight`来分配剩余的空间。在这种情况下,由于`Button2`的`layout_weight...

    Android 五大布局

    android:layout_width="wrap_content" android:layout_height="wrap_content"/> ``` **LinearLayout**是另一种常用的布局,它按照垂直或水平方向排列子视图。子视图会依次堆叠,且可以设置间距和对齐方式。此外...

    Android开发—使用ActivityGroup来切换Activity和Layout

    android:layout_width="wrap_content" android:layout_height="wrap_content"> <!-- 中间动态加载 View --> android:measureAllChildren="true" android:id="@+id/containerBody" android:layout_weight=...

    Android布局

    - **android:layout_width** 和 **android:layout_height**:用于设定视图的宽高,可以选择`wrap_content`(视图自动调整大小以匹配内容)或`match_parent`(视图大小与父容器相同)。 **示例代码**: ```xml ...

    android UI界面设计

    - **android:layout_weight**:用于分配父布局中剩余空间的比例,与“wrap_content”搭配使用时,可以使子元素根据权重值动态分配空间。 - **android:layout_margin**:定义子元素边缘与其父布局边缘的间距。 #### ...

    Android学习指南之Layout 布局--千锋培训

    android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button 1"/> android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" ...

    Android开发教程之Android 五大布局--千锋培训

    android:layout_width="wrap_content" android:layout_height="wrap_content" /> ``` **2. LinearLayout布局** LinearLayout按照垂直或水平方向排列其子视图,可以设置`android:orientation`属性来选择方向。每...

    android线性布局详解.doc

    两个TextView都将根据它们的`android:layout_weight`属性进行空间分配,但由于它们的宽度都是`"wrap_content"`,`android:layout_weight`的设置在这里不会改变它们的宽度,除非改变宽度属性为`"fill_parent"`。...

    Android 控件说明

    - `layout_weight`:用于确定视图在容器中的相对大小,特别是在`LinearLayout`中,当设置了`layout_weight`时,如果`layout_width`或`layout_height`设置为`match_parent`,则会根据权重分配空间。 - `layout_...

    布局精解文档

    当布局宽度或高度设置为`wrap_content`时,可以通过设置`layout_weight`来分配剩余的空间。例如,在上述示例中,三个按钮将会等宽分布。 #### 三、相对布局(RelativeLayout) 相对布局允许子视图相对于其他视图...

    Android多行多列的单选按钮组的实现

    为了实现多行显示,我们可以使用`RadioGroup`的`wrap_content`高度,并在每个`RadioButton`之间插入`View`或`Space`作为分隔符,然后通过设置它们的`layout_weight`属性来分配行宽。例如: ```xml android:layout...

    Android中Button样式新方法

    在布局文件中,我们可以创建一个LinearLayout,设置其宽度为fill_parent(或match_parent),高度为wrap_content,以便适应内容大小。通过设置orientation属性为horizontal,我们可以让内部的组件水平排列。同时,...

    Android中使用LinearLayout完成的内蒙古导览项目的代码清单 .pdf

    android:layout_height="wrap_content" android:scaleType="fitXY" android:src="@drawable/chun" /> android:id="@+id/imgView_xia" android:layout_width="match_parent" android:layout_height="wrap_...

    Android Layout

    `wrap_content`表示视图的大小刚好能够包含其内容,而`match_parent`(或`fill_parent`在较早版本的Android中)表示视图的大小将会匹配其父视图的大小。 LinearLayout中还可以使用`android:layout_weight`属性来...

    android_通讯录源码

    - `GridView`用于显示底部菜单,初始状态为隐藏(`android:visibility="gone"`), 宽度填满屏幕(`android:layout_width="fill_parent"`), 且位于屏幕底部(`android:layout_alignParentBottom="true"`). - `...

    图片浏览器

    android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <!-- 标题栏 --> android:layout_width="fill_parent" android:layout_height="41px" ...

    android_所有布局属性和UI控件

    1. **layout_width** 和 **layout_height** 可以设置为 `fill_parent`(现改为 `match_parent`),使控件填充其父容器的宽度或高度,或设置为 `wrap_content` 让控件根据内容自动调整大小。 2. **background** 属性...

Global site tag (gtag.js) - Google Analytics