我希望在所有活动中保持页眉和页脚相同,只需更改页眉和页脚之间的内容即可。下面的图像显示需要如何做那些东西。请帮助谢谢。
答案 0 :(得分: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”/>