美文网首页
09.layout_width的使用

09.layout_width的使用

作者: 随风_逝 | 来源:发表于2018-10-31 14:17 被阅读18次

    把 android:layout_width="0dp", android:layout_weight="1"
    横向分三等分

    <?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:orientation="horizontal" >
     
        <Button
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Button" />
     
        <Button
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Button" />
     
        <Button
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:text="Button" />
     
    </LinearLayout>
    

    android:weight属性使用时基本上是把width或者height设为0dp,这样控件便会按照weight值得比例分配大小,比如将上例子中的第一个button的weight设为2,三个空间宽度比例就成了2:1:1

    相关文章

      网友评论

          本文标题:09.layout_width的使用

          本文链接:https://www.haomeiwen.com/subject/nfoybftx.html