標籤:layout_weight
首先聲明只有在Linearlayout中,該屬性才有效。之所以android:layout_weight會引起爭議,是因為在設定該屬性的同時,設定android:layout_width為wrap_content和match_parent會造成兩種截然相反的效果。如下所示:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:background="@android:color/black" android:text="111" android:textSize="20sp" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="2" android:background="@android:color/holo_green_light" android:text="222" android:textSize="20sp" />
上面的布局將兩個TextView的寬度均設為match_parent,一個權重為1,一個權重為2.得到效果如下:
可以看到權重為1的反而佔了三分之二!
再看如下布局:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:background="@android:color/black" android:text="111" android:textSize="20sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="2" android:background="@android:color/holo_green_light" android:text="222" android:textSize="20sp" /> </LinearLayout>
即寬度為wrap_content,得到視圖如下:
左邊 TextView佔比三分之一,又正常了。
android:layout_weight的真實含義是:一旦View設定了該屬性(假設有效情況下),那麼該 View的寬度等於原有寬度(android:layout_width)加上剩餘空間的佔比!
設螢幕寬度為L,在兩個view的寬度都為match_parent的情況下,原有寬度為L,兩個的View的寬度都為L,那麼剩餘寬度為L-(L+L) = -L, 左邊的View佔比三分之一,所以總寬度是L+(-L)*1/3 = (2/3)L.事實上預設的View的weight這個值為0,一旦設定了這個值,那麼所在view在繪製的時候執行onMeasure兩次的原因就在這。
Google官方推薦,當使用weight屬性時,將width設為0dip即可,效果跟設成wrap_content是一樣的。這樣weight就可以理解為佔比了!
android:layout_weight的真實含義