android常用布局样式上、中、下三层

   我们在常用开发中经常用到一种布局结构,就是类似网页的页头、中间内容、页尾,下面我们就来看看在android中是怎样布局的。
  
   android常用布局样式上、中、下三层
   
   

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="111111" />
    </LinearLayout>

    <ListView
        android:id="@android :id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="222222" />
    </LinearLayout>

</RelativeLayout>


   我的博客其它文章列表  
   http://my.oschina.net/helu

你可能感兴趣的:(Android布局)