导航popUpTo不能按预期工作

时间:2020-09-14 18:53:48

标签: android

我无法从导航堆栈中清除启动页面。在navigation.xml文件中,您可以看到我将popUpTo属性设置为初始页面,同时将popUpToInclusive设置为true,但这似乎没有效果。

当应用程序打开时,启动屏幕显示一秒钟,然后显示main_fragment,但带有功能性的后退箭头。

我想念什么?

enter image description here

activity_main.xml

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/nav_fragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:defaultNavHost="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/toolbar"
        app:navGraph="@navigation/navigation" />

MainActivity.kt

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        val navController = supportFragmentManager.findFragmentById(R.id.nav_fragment)?.findNavController()
        navController?.let {
            findViewById<androidx.appcompat.widget.Toolbar>(R.id.toolbar).setupWithNavController(navController)
        }
    }
}

SplashFragment.kt

class SplashFragment : Fragment() {
    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        GlobalScope.launch {
            withContext(Dispatchers.Main) {
                delay(1000)
               
 findNavController().navigate(SplashFragmentDirections.actionSplashFragmentToMainFragment())
            }
        }
        return inflater.inflate(R.layout.fragment_splash, container, false)
    }
}

navigation.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"
    android:id="@+id/navigation"
    app:startDestination="@id/splashFragment">

    <fragment
        android:id="@+id/splashFragment"
        android:name="org.chrisolsen.myapplication.SplashFragment"
        android:label="fragment_splash"
        tools:layout="@layout/fragment_splash">
        <action
            android:id="@+id/action_splashFragment_to_mainFragment"
            app:destination="@id/mainFragment"
            app:popUpTo="@id/splashFragment"
            app:popUpToInclusive="true" />
    </fragment>
    <fragment
        android:id="@+id/mainFragment"
        android:name="org.chrisolsen.myapplication.MainFragment"
        android:label="fragment_main"
        tools:layout="@layout/fragment_main" />
</navigation>

1 个答案:

答案 0 :(得分:1)

当您将起始目标弹出后退堆栈并使用setupWithNavController()时,这是预期的行为。

按照Principles of Navigation,永远不要将起始目标弹出后栈。对于启动画面,您的活动应实现launch theme(您不应有单独的活动或单独的片段)。

您的popUpTo工作正常-这就是为什么系统后退按钮可以正常工作并导致您直接退出应用的原因。但是,所有NavigationUIsetupWithNavController API都假定您 遵循导航原理。弹出起始目标位置,您将触发与deep linked into your MainFragment相同的行为:

在这种情况下,“返回”按钮可将您带回到上一个应用程序,而“向上”按钮可在导航图内的分层父目标上启动应用程序的任务。

但是您的“以前的应用”是您的启动器。