17

对以下代码有任何想法吗?在我的测试中,我发现替换的片段没有被破坏,并且在弹出返回堆栈时实例仍然存在。只是想验证这是使用片段事务的有效方式。

getSupportFragmentManager().beginTransaction().addToBackStack(null).replace(frame, fragmentB).commit();

我使用替换的原因是它会导致被替换的片段运行它的退出动画。

4

1 回答 1

24

片段交易可以参考android设计器指南:http: //developer.android.com/guide/components/fragments.html

具体如下:

// Create new fragment and transaction
Fragment newFragment = new ExampleFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();

// Replace whatever is in the fragment_container view with this fragment,
// and add the transaction to the back stack
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);

// Commit the transaction
transaction.commit();

所以是的,你正在做的是替换片段的正确方法。

于 2013-11-08T16:10:28.657 回答