LinearLayout中的layout_weight属性

系统 1739 0

LinearLayout中的layout_weight属性

布局LinearLayout代码

Xml代码 收藏代码
  1. <? xml version = "1.0" encoding = "utf-8" ?>
  2. < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
  3. android:orientation = "vertical"
  4. android:layout_width = "fill_parent"
  5. android:layout_height = "fill_parent"
  6. >
  7. < Button
  8. android:layout_width = "fill_parent"
  9. android:layout_height = "fill_parent"
  10. android:text = "Button1"
  11. android:background = "#008000"
  12. android:layout_weight = "0"
  13. />
  14. < Button
  15. android:layout_width = "fill_parent"
  16. android:layout_height = "fill_parent"
  17. android:text = "Button2"
  18. android:background = "#FFFF00"
  19. android:layout_weight = "0"
  20. />
  21. </ LinearLayout >

layout_weight属性如果没有设置,则默认为0.

按钮1:button1,绿色

按钮2:button2,黄色

下面以按钮1和按钮2的weight属性(layout_weight)的变化,分别进行记录。

这里测试的是垂直布局android:orientation="vertical",所以针对组件的 android:layout_height属性;如果测试的水平布局,则需针对组件的 android:layout_width属性。

(一) android:layout_height = "fill_parent"

LinearLayout中的layout_weight属性 LinearLayout中的layout_weight属性
button1(weight=0) button2(weight=0) button1(weight=0) button2(weight=1)

LinearLayout中的layout_weight属性

LinearLayout中的layout_weight属性

button1(weight=1) button2(weight=1)

button1占1/2,button2占1/2

button1(weight=1) button2(weight=2)

button1占2/3,button2占1/3


LinearLayout中的layout_weight属性

LinearLayout中的layout_weight属性

button1(weight=1) button2(weight=9)

button1占9/10,button2占1/10

button1(weight=1) button2(weight=30)

button1占30/31,button2占1/31

(二) android:layout_height = "wrap_content"


LinearLayout中的layout_weight属性

LinearLayout中的layout_weight属性

button1(weight=0) button2(weight=0)

button1(weight=0) button2(weight=1)

LinearLayout中的layout_weight属性

LinearLayout中的layout_weight属性

button1(weight=1) button2(weight=1)

button1占1/2,button2占1/2

button1(weight=1) button2(weight=2)

button1占1/3,button2占2/3


LinearLayout中的layout_weight属性

LinearLayout中的layout_weight属性

button1(weight=1) button2(weight=9)

button1(weight=1) button2(weight=30)

通过以上实验可知:

(一) android:layout_height = "fill_parent"

(二) android:layout_height = "wrap_content"

在(一)、(二)2种情况在相同的weight属性下呈现出正好相反的情况。


LinearLayout中的layout_weight属性


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论