`

android页面布局 中间的listView填充剩余部分

 
阅读更多
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="50dip"
        android:background="#606060"
        android:text="顶部" />

    <ListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        />
    
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="50dip"
        android:background="#606060"
        android:text="底部" />

</LinearLayout>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics