我按照本教程使用片段创建了一个标签活动:
http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/
其中一个标签式活动包括列表视图;当您单击列表视图中的项目时,它会打开一个新活动。但我希望新活动仍然显示选项卡活动中的选项卡。换句话说,我希望选项卡显示应用程序中的所有活动,但我不知道如何使其持久化。
有人能指出我正确的方向吗?
答案 0 :(得分:1)
要使您的应用程序保持持久性,请使用Inheritance
。创建listView.xml
,tabactivity.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>
答案 1 :(得分:0)
您可以在每次活动开始时动态添加tabview。