我有两个bottomsheetdialogfragment:bottomsheetdialogfragment1和bottomsheetdialogfragment2,我想从bottomsheetdialogfragment1到bottomsheetdialogfragment2,这是这样的代码示例
val bottomSheetDialogFragment2 = BottomSheetDialogFragment2()
bottomSheetDialogFragment2.show(childFragmentManager, bottomSheetDialogFragment1.tag)
但是当我像下面的代码一样重定向到bottomsheetdialogfragment2之后,我会关闭bottomsheetdialogfragment2
val bottomSheetDialogFragment2 = BottomSheetDialogFragment2()
bottomSheetDialogFragment2.show(childFragmentManager, bottomSheetDialogFragment1.tag)
解除()
结果是:bottomsheetdialogfragment1和bottomsheetdialogfragment2是dismission(),我只想关闭一个bottomsheet。
1条答案
按热度按时间s8vozzvw1#
尝试使用活动中的碎片管理器:
你也可以用
showNow
在对话框之间转换时防止屏幕闪烁的方法:当心那个
parentFragmentManager
如果在将此方法附加到活动之前调用此方法,则方法可能引发异常,以下是文档:https://developer.android.com/reference/androidx/fragment/app/fragment#getparentfragmentmanager()