android:layout_weight让layout自动调整到剩余高度

设计过程中,activity有上下固定高度的菜单,需要控件能自动填充中间的空白部分。
发现在一个容器里,其他控件没有android:layout_weight设定时,给linearlayout指定android:layout_weight就能自动填充空余的高度。
省去了很多取屏幕高度的复杂的运算,感觉相当的棒!


    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

            android:id="@+id/portal_welcome"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="动态信息(根据数据库内容填充)"
        android:textSize="24sp" />

            android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="bottom"
        android:orientation="vertical" >

                    android:id="@+id/portal_menu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="32sp固定菜单项位置"
            android:textSize="32sp" />

                    android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="#22333333"
            android:gravity="top"
            android:orientation="vertical" >

                            android:id="@+id/portal_menu"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="android:layout_weight  填充 " />
       

                    android:id="@+id/portal_menu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="40sp菜单项"
            android:textSize="40sp" />
   

效果如下图:


灰色部分为自动填充的高度

android:layout_weight让layout自动调整到剩余高度_第1张图片

android:layout_weight让layout自动调整到剩余高度_第2张图片

你可能感兴趣的:(Android学习分享)