王立平-- 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>

posted @ 2017-04-12 21:55  gccbuaa  阅读(115)  评论(0编辑  收藏  举报