1

我按照本教程使用片段创建了一个选项卡活动:

http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/

选项卡式活动之一包括列表视图;当您单击列表视图中的某个项目时,它会打开一个新活动。但我希望新活动仍然显示选项卡活动中的选项卡。换句话说,我希望标签显示在应用程序中的所有活动上,但我不知道如何使其持久化。

有人能指出我正确的方向吗?

4

2 回答 2

1

要使您的应用程序持久化,请使用Inheritance. 创建listView.xmltabactivity.xml并将其嵌入MainActivity.xml如下:

 <LinearLayout ... >
<include layout="@layout/listView" /> // your listview.xml file will be called
<include layout="@layout/tabactivity" />   // your tabactivity.xml file will be called
</LinearLayout>
于 2013-01-24T07:20:31.837 回答
0

您可以在每个活动开始时动态添加您的选项卡视图。

于 2013-01-24T07:22:00.713 回答