android页面布局(listview填充中间)

android页面布局(listview填充中间)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/tv_top"
        android:layout_width="fill_parent" 
    android:layout_height="50dip"
         android:background="#606060"
         android:layout_alignParentTop="true"
         android:text="顶部" />
 
    <ListView
         android:id="@+id/list"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:layout_below="@+id/tv_top"
         android:layout_above="@+id/tv_bottom"
          />
 
    <TextView
         android:id="@+id/tv_bottom"
         android:layout_alignParentBottom="true"
         android:layout_width="fill_parent"
         android:layout_height="50dip"
         android:background="#606060"
         android:text="底部" />
</RelativeLayout>
android页面布局(listview填充中间)

 

android页面布局(listview填充中间),布布扣,bubuko.com

android页面布局(listview填充中间)

上一篇:这游戏如此吊,它的玩家知道吗-Android游戏《头脑风暴》


下一篇:在ubuntu下真机调试android程序出现设备没有访问权限