android:weight的使用

发布时间:2020-07-23 19:06:17 作者:wufanxin
来源:网络 阅读:257

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相反,值大的权低,显示宽度小


推荐阅读:
  1. java编程基础之模仿用户登录代码分享
  2. java编程经典案例之基于斐波那契数列解决兔子问题实例

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

使用 android weigh

上一篇:响应式布局

下一篇:openstack公有云需要放通的网络平面

相关阅读

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

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