王立平-- android:layout_weight

效果:



<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
       android:background="#FFFFFF"
    android:orientation="vertical" >
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:background="#D200D2"/>
     <TextView
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:background="#6f00D2"/>
    

</LinearLayout>

原文地址:https://www.cnblogs.com/gccbuaa/p/6701590.html