美文网首页
LinearLayout的weightSum属性

LinearLayout的weightSum属性

作者: 业精于勤_荒于嬉 | 来源:发表于2021-01-13 17:20 被阅读0次

LinearLayout可以设置weightSum属性,意为:把整个LinearLayout的布局分为几份,子View可以设置layout_weight属性来设置自身的宽高。如:

<LinearLayout
        android:id="@+id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:orientation="vertical"
        android:background="#FFFFFF"
        android:weightSum="5">
        <TextView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:background="@color/color_main"/>
</LinearLayout>
布局

相关文章

网友评论

      本文标题:LinearLayout的weightSum属性

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