Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android:Layout_weight的深刻理解

Android:Layout_weight的深刻理解

編輯:關於Android編程

最近寫Demo,突然發現了Layout_weight這個屬性,發現網上有很多關於這個屬性的有意思的討論,可是找了好多資料都沒有找到一個能夠說的清楚的,於是自己結合網上資料研究了一下,終於迎刃而解,寫出來和大家分享。

首先看一下Layout_weight屬性的作用:它是用來分配屬於空間的一個屬性,你可以設置他的權重。很多人不知道剩余空間是個什麼概念,下面我先來說說剩余空間。

看下面代碼:

  1. android:orientation="vertical"
  2. android:layout_width="fill_parent"
  3. android:layout_height="fill_parent"
  4. >
  5. android:layout_width="fill_parent"
  6. android:layout_height="wrap_content"
  7. android:gravity="left"
  8. android:text="one"/>
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:gravity="center"
  12. android:layout_weight="1.0"
  13. android:text="two"/>
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"
  16. android:gravity="right"
  17. android:text="three"/>

運行結果是:

\

看上面代碼:只有Button2使用了Layout_weight屬性,並賦值為了1,而Button1和Button3沒有設置Layout_weight這個屬性,根據API,可知,他們默認是0

下面我就來講,Layout_weight這個屬性的真正的意思:Android系統先按照你設置的3個Button高度Layout_height值wrap_content,給你分配好他們3個的高度,

然後會把剩下來的屏幕空間全部賦給Button2,因為只有他的權重值是1,這也是為什麼Button2占了那麼大的一塊空間。

有了以上的理解我們就可以對網上關於Layout_weight這個屬性更讓人費解的效果有一個清晰的認識了。

我們來看這段代碼:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. android:layout_width="fill_parent"
  3. android:layout_height="wrap_content"
  4. android:orientation="horizontal" >
  5. android:background="#ff0000"
  6. android:layout_width="**"
  7. android:layout_height="wrap_content"
  8. android:text="1"
  9. android:textColor="@android:color/white"
  10. android:layout_weight="1"/>
  11. android:background="#cccccc"
  12. android:layout_width="**"
  13. android:layout_height="wrap_content"
  14. android:text="2"
  15. android:textColor="@android:color/black"
  16. android:layout_weight="2" />
  17. android:background="#ddaacc"
  18. android:layout_width="**"
  19. android:layout_height="wrap_content"
  20. android:text="3"
  21. android:textColor="@android:color/black"
  22. android:layout_weight="3" />

三個文本框的都是 layout_width=“wrap_content ”時,會得到以下效果

\

按照上面的理解,系統先給3個TextView分配他們的寬度值wrap_content(寬度足以包含他們的內容1,2,3即可),然後會把剩下來的屏幕空間按照1:2:3的比列分配給3個textview,所以就出現了上面的圖像。<喎?/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+Crb4tbFsYXlvdXRfd2lkdGg9obBmaWxsX3BhcmVudKGxyrGjrMjnufu31rHwuPjI/bj2VGV4dFZpZXfJ6NbDy/vDx7XETGF5b3V0X3dlaWdodM6qMaGiMqGiMrXEu7CjrL7Nu+Gz9s/Wz8LD5rXE0Ke5+6O6PC9wPgo8cD4KPGltZyBjbGFzcz0="fit-image" width="465" height="90" src="/uploadfile/Collfiles/20140802/20140802091446122.jpg" alt="\">

你會發現1的權重小,反而分的多了,這是為什麼呢???網上很多人說是當layout_width=“fill_parent”時,weighth值越小權重越大,優先級越高,就好像在背口訣

一樣,其實他們並沒有真正理解這個問題,真正的原因是Layout_width="fill_parent"的原因造成的。依照上面理解我們來分析:

系統先給3個textview分配他們所要的寬度fill_parent,也就是說每一都是填滿他的父控件,這裡就死屏幕的寬度

那麼這時候的剩余空間=1個parent_width-3個parent_width=-2個parent_width (parent_width指的是屏幕寬度 )

那麼第一個TextView的實際所占寬度應該=fill_parent的寬度,即parent_width + 他所占剩余空間的權重比列1/5 * 剩余空間大小(-2 parent_width)=3/5parent_width

同理第二個TextView的實際所占寬度=parent_width + 2/5*(-2parent_width)=1/5parent_width;

第三個TextView的實際所占寬度=parent_width + 2/5*(-2parent_width)=1/5parent_width;所以就是3:1:1的比列顯示了。

這樣你也就會明白為什麼當你把三個Layout_weight設置為1、2、3的話,會出現下面的效果了:

第三個直接不顯示了,為什麼呢?一起來按上面方法算一下吧:

系統先給3個textview分配他們所要的寬度fill_parent,也就是說每一都是填滿他的父控件,這裡就死屏幕的寬度

那麼這時候的剩余空間=1個parent_width-3個parent_width=-2個parent_width (parent_width指的是屏幕寬度 )

那麼第一個TextView的實際所占寬度應該=fill_parent的寬度,即parent_width + 他所占剩余空間的權重比列1/6 * 剩余空間大小(-2 parent_width)=2/3parent_width

同理第二個TextView的實際所占寬度=parent_width + 2/6*(-2parent_width)=1/3parent_width;

第三個TextView的實際所占寬度=parent_width + 3/6*(-2parent_width)=0parent_width;所以就是2:1:0的比列顯示了。第三個就直接沒有空間了。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved