日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

weight和weightSum的区别

發(fā)布時間:2023/12/16 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 weight和weightSum的区别 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

說起weight大家肯定都非常的清楚它的使用,可是weightSum恐怕有很多人不是很清楚,起碼今天前我是不知道的,哈哈,來個筆記記錄下二者的區(qū)別。

一: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,設(shè)置的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>

效果圖: ? ?
內(nèi)部的計算原理是:
Button的寬度 = Button 的 width + Button的weight * 父布局(LinearLayout)的寬度 / weightSum
上面的例子,也就是 Button的寬度 = 0 + 0.5 * LinearLayout的寬度 / 1 = 0.5 * LinearLayout的寬度
也就是Button的寬度將占屏幕的一半。




總結(jié)

以上是生活随笔為你收集整理的weight和weightSum的区别的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。