androidフラグメントのバックスタックが機能しているように見える方法に大きな問題があり、提供されたヘルプに最も感謝します。
3つのフラグメントがあると想像してください
[1] [2] [3]
ユーザーがナビゲートできるようにしたいのです[1] > [2] > [3]
が、帰り道(戻るボタンを押す)[3] > [1]
です。
私が想像したように、これは、フラグメントをXMLで定義されたフラグメントホルダーに取り込むaddToBackStack(..)
トランザクションを作成するときに呼び出さないことで実現されます。[2]
[2]
これの現実は、ユーザーが戻るボタンを押したときに再び表示されたくない場合は、フラグメントを表示するトランザクションを[3]
呼び出さないようにする必要があるようです。これは完全に直感に反しているようです(おそらくiOSの世界から来ています)。addToBackStack
[3]
とにかくこうすれば、出て押し返すと期待通り[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"
/>
更新 これは、navheirarchyによるビルドに使用しているコードです。
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]
どうもありがとう