我正在使用 BottomSheetDialogFragment 显示一些自定义设置。
要求:
当我单击BottomSheetDialogFragment中的任何选项卡时,我会替换该片段并将其添加到Backstack中,以便当用户单击onBackPress或Up操作时,它应该返回BottomSheetDialogFragment的最后一个设置的片段。
我想使用导航体系结构组件来简化我的交易。
问题: 如果我使用导航体系结构组件从FragmentA导航到BottomSheetDialogFragment,则收到以下错误。
java.lang.IllegalStateException:对话框不能为null BottomSheetDialogFragment
我不知道如何使用导航体系结构组件实例化BottomSheetDialogFragment,并且使用下面的代码将不会使用导航体系结构组件维护后退堆栈。
BottomSheetDialogFragment.show(FragmentManager manager, String tag)
答案 0 :(得分:3)
在导航组件版本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
。
干杯!