在Android片段中维护后台堆栈

时间:2014-05-12 05:39:52

标签: android android-fragments

我在Android中有一个列表视图。在每次单击列表项时,我都加载了单个视图名称"模板片段"每次点击动态。点击Sub Views后,我加载了相同的View" Template Fragment"再次动态。现在我有来自同一片段的多个视图。 现在我的问题是维护所有视图的堆栈。我怎么能做到这一点。

请帮助我。

提前致谢。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:1)

使用以下代码

//add to back stack
transaction.addToBackStack(type.getClass().getName());

//Commit the transaction
transaction.commit();

作为参数的字符串可能有助于识别片段

如果您以后不需要识别此后备堆栈,请为addToBackStack传递 null