weight和weightSum的区别
生活随笔
收集整理的這篇文章主要介紹了
weight和weightSum的区别
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
說起weight大家肯定都非常的清楚它的使用,可是weightSum恐怕有很多人不是很清楚,起碼今天前我是不知道的,哈哈,來個筆記記錄下二者的區別。
一:weight的使用
來個例子,簡單明了。
布局文件:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:orientation="horizontal"><Buttonandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:text="占50%" /><Buttonandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:text="占50%" /></LinearLayout>從布局文件,可以看出兩個button,設置的weight分別為1,既二者占用的比例一樣,各占50%的寬度。weight的占比計算為:父布局的-其他的占用空間,剩下的按照所有weight的比例來分。
? ?布局效果圖:
? ?
二:weightSum的使用
? ? 布局文件:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:gravity="center"android:orientation="horizontal"android:weightSum="1"><Buttonandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.5"android:text="@string/hello_world" /></LinearLayout> 效果圖: ? ?
內部的計算原理是:
Button的寬度 = Button 的 width + Button的weight * 父布局(LinearLayout)的寬度 / weightSum
上面的例子,也就是 Button的寬度 = 0 + 0.5 * LinearLayout的寬度 / 1 = 0.5 * LinearLayout的寬度
也就是Button的寬度將占屏幕的一半。
總結
以上是生活随笔為你收集整理的weight和weightSum的区别的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 互联网泡沫2.0
- 下一篇: Prince打造英语播音员1-3