首页 > 解决方案 > Android导航组件 - 更改根片段?

问题描述

假设我有片段 a->b->c ,但是“a”是一个启动画面,所以我希望“b”成为堆栈中的第一个片段并永远抛出“a”,所以当我是“b”时然后按“返回”系统按钮 - 我关闭应用程序

在 SupportFragmentManager 我使用了 replace() 并且有效。但是我怎样才能在这里实现呢?

标签: androidandroid-navigationandroid-navigation-graph

解决方案


这是一个例子

图.xml

<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
app:startDestination="@id/splashFragment">

<fragment
    android:id="@+id/splashFragment"
    android:name="com.example.***.fragments.SplashFragment"
    android:label="SplashFragment"
    tools:layout="@layout/layout_splash">
    <action
        android:id="@+id/action_splashFragment_to_homeFragment"
        app:destination="@id/homeFragment"
        app:popUpTo="@id/splashFragment"
        app:popUpToInclusive="true"/> // here to make home fragment as root
</fragment>
<fragment
    android:id="@+id/homeFragment"
    android:name="com.example.***.fragments.HomeFragment"
    android:label="HomeFragment"
    tools:layout="@layout/layout_home">
</fragment>
</navigation>

而在SplashFragment你只需要导航到主页OnCreate()

findNavController().navigate(R.id.action_splashFragment_to_homeFragment)

如果您只想在代码中执行此操作

findNavController()
    .navigate(R.id.action_splashFragment_to_homeFragment,
            null,
            NavOptions.Builder()
                    .setPopUpTo(R.id.splashFragment,
                            true).build()
    )

推荐阅读