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>
布局
网友评论