0

我希望在所有活动中保持页眉和页脚相同,只需更改页眉和页脚之间的内容即可。下面的图片显示需要如何做这些事情。请帮忙谢谢。

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

4

1 回答 1

0

只需对所有活动使用单一布局,如下所示,

 // Header Activity..

   <RelativeLayout>
        // items in header activity
   </RelativeLayout>



 // Footer Activity..

   <RelativeLayout>
        // items in footer activity
   </RelativeLayout>


// In all activity

    <include android:id=”@+id/header”
     android:layout_width=”fill_parent”
     android:layout_height=”fill_parent”
     layout=”@layout/header_layout”/>

     <RelativeLayout
        android:id="@+id/middle_layout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/header_layout"
        >
         // middle layout
        </RelativeLayout>

    <include android:id=”@+id/footer”
     android:layout_width=”fill_parent”
     android:layout_height=”fill_parent”
     layout=”@layout/footer_layout”/>
于 2013-02-25T05:07:15.250 回答