Android之深刻理解layout_weight
在螢幕適配時,我們經常使用linearlayout的layout_weight屬性來實現百分比佈局。
PS:Android提供了Android-percent-support這個庫,支援百分比佈局,有興趣的朋友可以瞭解一下。
首先看一下LinearLayout佈局中Layout_weight屬性的作用:它是用來分配屬於空間的一個屬性,你可以設定他的權重。很多人不知道剩餘空間是個什麼概念,下面我先來說說剩餘空間。
看下面程式碼:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="one"/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="1.0"
android:text="two"/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:text="three"/>
</LinearLayout>
執行結果是:
看上面程式碼:只有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這個屬性更讓人費解的效果有一個清晰的認識了。
我們來看這段程式碼:
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:background="#ff0000"
android:layout_width="**"
android:layout_height="wrap_content"
android:text="1"
android:textColor="@android:color/white"
android:layout_weight="1"/>
<TextView
android:background="#cccccc"
android:layout_width="**"
android:layout_height="wrap_content"
android:text="2"
android:textColor="@android:color/black"
android:layout_weight="2" />
<TextView
android:background="#ddaacc"
android:layout_width="**"
android:layout_height="wrap_content"
android:text="3"
android:textColor="@android:color/black"
android:layout_weight="3" />
</LinearLayout>
三個文字框的都是 layout_width=“wrap_content ”時,會得到以下效果
按照上面的理解,系統先給3個TextView分配他們的寬度值wrap_content(寬度足以包含他們的內容1,2,3即可),然後會把剩下來的螢幕空間按照1:2:3的比列分配給3個textview,所以就出現了上面的影像。
而當layout_width=“fill_parent”時,如果分別給三個TextView設定他們的Layout_weight為1、2、2的話,就會出現下面的效果:
你會發現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的比列顯示了。第三個就直接沒有空間了。
水平方向按比例顯示LinearLayout內各個子控制元件,需設定android:layout_width="0dp",
豎直方向需要設定android:layout_height="0dp"。
相關文章
- Android:layout_weight屬性的兩種用法Android
- 關於android:layout_weight屬性使用注意事項Android
- 巧用android:layout_weight,把WebView和Button一起裝進AlertDialogAndroidWebView
- Python之美[從菜鳥到高手]--深刻理解原類(metaclass)Python
- Android實習收穫:UI細節bug引發的layout_weight深入理解AndroidUI
- 徹底深刻理解js原型鏈之prototype,__proto__以及constructor(二)JS原型Struct
- 徹底深刻理解js原型鏈之prototype,__proto__以及constructor(一)JS原型Struct
- 2.1.5 Python元類深刻理解(metaclass)Python
- 深刻理解Spring宣告式事務Spring
- 深刻理解Python中的元類(metaclass)Python
- 經典專案管理原則--需深刻理解專案管理
- Redis系列:深刻理解高效能Redis的本質Redis
- 深刻理解php“繼承“、“私有屬性“、“$this指向“的關係PHP繼承
- 深刻理解 background-position 中的百分比
- 深刻理解Oracle資料庫的啟動和關閉Oracle資料庫
- 深刻理解 oracle 資料庫的啟動和關閉Oracle資料庫
- 深刻理解Oracle資料庫的啟動和關閉(轉)Oracle資料庫
- [轉帖]Redis系列:深刻理解高效能Redis的本質Redis
- Android之動畫Android動畫
- Android之AlarmManagerAndroid
- Android之StrictModeAndroid
- Android之FragmentAndroidFragment
- Android之CrashHandlerAndroid
- Android之HandlerAndroid
- Android之ActivityAndroid
- Android之ServiceAndroid
- Android之ListViewAndroidView
- Android 之 SystemServiceAndroid
- Android之android exported="false"作用AndroidExportFalse
- C++理論梳理3——深刻理解標頭檔案的作用C++
- android開發 之 Bolts-AndroidAndroid
- android之 Android訊息機制Android
- Android之BroadcastReceiverAndroidAST
- Android OCR之tesseractAndroid
- Android之MVC模式AndroidMVC模式
- Android 通知之 NotificationAndroid
- Android 之 SharedPreferencesAndroid
- android之Notification通知Android