新手有关问题 GridView做的菜单栏 怎么实现在多个Activity跳转,菜单栏一直保持在底部

新手问题 GridView做的菜单栏 如何实现在多个Activity跳转,菜单栏一直保持在底部
自己使用gridview 写的底部菜单栏
  各个菜单项的点击事件我知道在哪里
 我要怎么实现点击后显示不同activity 但菜单栏还在底部 
 GridView做的菜单栏 如何实现在多个Activity跳转,菜单栏一直保持在底部

------解决方案--------------------
刚刚好在做你要做的东西
http://blog.****.net/hellogv/article/details/6057174
给你个参考

布局文件改下

<?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" >

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<GridView
android:id="@+id/gvTopBar"
android:layout_width="fill_parent"
android:layout_height="47dip"
android:layout_alignParentBottom="true"
android:background="@drawable/olympic_bottom"
android:fadingEdge="vertical"
android:scaleType="fitXY"
android:fadingEdgeLength="5dip" />

<LinearLayout
android:id="@+id/Container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginBottom="47dip" >
</LinearLayout>
</RelativeLayout>

</LinearLayout>
------解决方案--------------------
ActivityGroup