Я пытаюсь реализовать объект навигатор. У него есть собственный стек.
Моя иерархия макета активности ниже:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
Моя иерархия фрагментов здесь:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/fragmentRootLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:elevation="4dp"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary" />
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
android:id="@+id/fragmentContentLayout">
</FrameLayout>
Чтобы заменить фрагмент A и фрагмент B анимацией, панель инструментов анимируется, когда я использую getSupportFragmentManager действия.
Но это не подходит для моего требования. Потому что я хочу, чтобы у каждого навигатора был свой стек. Итак, я использую приведенный ниже код с анимацией (справа налево)
getChildFragmentManager().beginTransaction().replace(R.id.fragmentRootLayout, fragment);
Но панель инструментов не скользит справа налево.