我在 android 片段 backstack 的工作方式上遇到了一个大问题,并且非常感谢提供的任何帮助。
想象一下你有 3 个片段
[1] [2] [3]
我希望用户能够导航[1] > [2] > [3]
但在返回的路上(按下返回按钮)[3] > [1]
。
正如我想象的那样,这将通过addToBackStack(..)
在创建将片段[2]
带入 XML 中定义的片段持有者的事务时不调用来实现。
现实情况似乎是,如果我不想[2]
在用户按下返回按钮时再次出现[3]
,我就不能调用addToBackStack
显示片段的事务[3]
。这似乎完全违反直觉(可能来自 iOS 世界)。
无论如何,如果我这样做,当我离开[1] > [2]
并按回时,我会按[1]
预期返回。
如果我去[1] > [2] > [3]
然后按回来,我会跳回[1]
(如预期的那样)。现在,当我尝试[2]
再次从[1]
. 首先是在进入视野[3]
之前简要显示。[2]
如果我此时按下返回,[3]
则会显示,如果我再次按下返回,应用程序将退出。
谁能帮我理解这里发生了什么?
这是我的主要活动的布局 xml 文件:
<?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" >
<fragment
android:id="@+id/headerFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
class="com.fragment_test.FragmentControls" >
<!-- Preview: layout=@layout/details -->
</fragment>
<FrameLayout
android:id="@+id/detailFragment"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
更新 这是我用来通过 nav heirarchy 构建的代码
Fragment frag;
FragmentTransaction transaction;
//Create The first fragment [1], add it to the view, BUT Dont add the transaction to the backstack
frag = new Fragment1();
transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.detailFragment, frag);
transaction.commit();
//Create the second [2] fragment, add it to the view and add the transaction that replaces the first fragment to the backstack
frag = new Fragment2();
transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.detailFragment, frag);
transaction.addToBackStack(null);
transaction.commit();
//Create third fragment, Dont add this transaction to the backstack, because we dont want to go back to [2]
frag = new Fragment3();
transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.detailFragment, frag);
transaction.commit();
//END OF SETUP CODE-------------------------
//NOW:
//Press back once and then issue the following code:
frag = new Fragment2();
transaction = getSupportFragmentManager().beginTransaction();
transaction.replace(R.id.detailFragment, frag);
transaction.addToBackStack(null);
transaction.commit();
//Now press back again and you end up at fragment [3] not [1]
非常感谢