android:layout_weight的真實含義

來源:互聯網
上載者:User

標籤: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的真實含義

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.