LinearLayout的weightSum属性

2021-01-13  本文已影响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>
布局
上一篇下一篇

猜你喜欢

热点阅读