温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

android:weight的使用

发布时间:2020-07-23 19:06:17 来源:网络 阅读:241 作者:wufanxin 栏目:移动开发

android:weight属性能够根据手机高宽按设定比例显示控件

如:

宽度上按比例显示

<LinearLayout
                android:layout_marginTop="5dp"
                androidandroid:weight的使用rientation="horizontal"
                android:layout_width="fill_parent"----------------让其满宽
                android:layout_height="wrap_content">
            <Button
                    android:id="@+id/first_sex1_4"
                    android:layout_marginLeft="15dp"
                    android:layout_width="0dp"---------设置0dp,让宽度由比例生成
                    android:layout_weight="1"
                    android:layout_height="50dp"/>
            <Button
                    android:id="@+id/first_sex1_5"
                    android:layout_marginLeft="5dp"
                   android:layout_width="0dp"
                    android:layout_weight="3"
                    android:layout_height="50dp"/>         
        </LinearLayout>

注意现在android:layout_width="0dp"

最终3个按钮显示的宽度比例为1:3,和weight一样,值大的权高,显示宽度大


然而如果把 android:layout_width="fill_parent"

<LinearLayout
                android:layout_marginTop="5dp"
                androidandroid:weight的使用rientation="horizontal"
                android:layout_width="fill_parent"----------------让其满宽
                android:layout_height="wrap_content">
            <Button
                    android:id="@+id/first_sex1_4"
                    android:layout_marginLeft="15dp"
                    android:layout_width="fill_parent"---------设置fill_parent,让宽度由比例生成
                    android:layout_weight="1"
                    android:layout_height="50dp"/>
            <Button
                    android:id="@+id/first_sex1_5"
                    android:layout_marginLeft="5dp"
                   android:layout_width="fill_parent"
                    android:layout_weight="3"
                    android:layout_height="50dp"/>         
        </LinearLayout>

注意现在android:layout_width="fill_parent"

最终3个按钮显示的宽度比例为3:1,和weight相反,值大的权低,显示宽度小


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI