J'ai un énorme problème avec la façon dont la backstack de fragments Android semble fonctionner et je serais très reconnaissant pour toute aide qui est offerte.
Imaginez que vous avez 3 fragments
[1] [2] [3]
Je veux que l'utilisateur puisse naviguer [1] > [2] > [3]
mais sur le chemin du retour (en appuyant sur le bouton retour) [3] > [1]
.
Comme je l'aurais imaginé, cela serait accompli en n'appelant pas addToBackStack(..)
lors de la création de la transaction qui [2]
introduit le fragment dans le détenteur du fragment défini en XML.
La réalité de cela semble que si je ne veux [2]
pas réapparaître lorsque l'utilisateur appuie sur le bouton retour [3]
, je ne dois pas appeler addToBackStack
la transaction qui montre le fragment [3]
. Cela semble complètement contre-intuitif (peut-être venant du monde iOS).
Quoi qu'il en soit, si je le fais de cette façon, quand je pars [1] > [2]
et que j'appuie, j'arrive [1]
comme prévu.
Si j'y vais [1] > [2] > [3]
et que j'appuie, je reviens à [1]
(comme prévu). Maintenant, le comportement étrange se produit lorsque j'essaye de sauter à [2]
nouveau à partir de [1]
. Tout d'abord [3]
est brièvement affiché avant d' [2]
entrer en vue. Si j'appuie en arrière à ce stade [3]
s'affiche, et si j'appuie à nouveau, l'application se ferme.
Quelqu'un peut-il m'aider à comprendre ce qui se passe ici?
Et voici le fichier xml de mise en page pour mon activité principale:
<?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"
/>
Mettre à jour C'est le code que j'utilise pour construire par 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]
Merci beaucoup