大家好,欢迎来到IT知识分享网。
weight:重量、权重。
当我们给一个view设置了android:layout_weight属性,意味着赋予它话语权,常规思维就是谁的weight大,谁说了算(空间占比大)。
下面我们来看下具体的代码:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:text="我的weight是2" android:layout_weight="2" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="我的weight是1" android:layout_weight="1"/> </LinearLayout>
两个Button的宽度设置的是wrap_content,此时weight属性使LinearLayout给内部的两个Button按2:1的权重分配了所有宽度空间。
官方推荐使用weight按比例分配宽度空间时,将LinearLayout内View的宽度设置为0。
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/33774.html