我对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"
/>
更新 这是我通过导航继承构建的代码
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]
非常感谢