如何使用导航架构组件创建 BottomSheetDialogFragment?

How to create BottomSheetDialogFragment using Navigation Architecture Component?

我正在使用 BottomSheetDialogFragment 来显示一些自定义设置。

要求:

当我单击 BottomSheetDialogFragment 中的任何选项卡时,我替换该片段并将其添加到后台堆栈,这样当用户单击 onBackPress 或 Up 操作时,它应该返回 BottomSheetDialogFragment 的最后设置片段。

我想使用导航架构组件来简化我的交易。

问题: 如果我使用导航架构组件从 FragmentA 导航到 BottomSheetDialogFragment,那么我会收到以下错误。

java.lang.IllegalStateException: dialog must not be null BottomSheetDialogFragment

我不知道如何使用导航架构组件实例化 BottomSheetDialogFragment 并且使用下面的代码不会有使用导航架构组件的维护后台堆栈。

BottomSheetDialogFragment.show(FragmentManager manager, String tag)

在导航组件版本 2.1.0-alpha04 中,Navigation Graph 可以包含 dialog 作为目的地之一。

<?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/main_navigation"
    app:startDestination="@id/startFragment">

    <fragment
        android:id="@+id/loginFragment"
        android:name="com.awesomeproject.android.authentication.login.LoginFragment"
        android:label="Login"
        tools:layout="@layout/login_fragment" />

    <dialog
        android:id="@+id/bottomSheet"
        android:name="com.awesomproject.android.BottomSheetFragment"
        tools:layout="@layout/bottom_sheet_dialog_fragment" />

</navigation>

BottomSheetFragment 看起来与其他 BottomSheet 相似。

class BottomSheetFragment : BottomSheetDialogFragment() {
    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                              savedInstanceState: Bundle?): View =
            inflater.inflate(R.layout.bottom_sheet_dialog_fragment, container, false)
}

然后您可以像对待其他目的地一样对待bottomSheet。您可以导航到此目的地或传递 safeArgs in.

干杯!