使用Android Jetpack导航时如何防止导航

问题描述 投票:0回答:1

我想检查实际片段是否脏,并警告用户丢失他的更改。在导航发生之前,我无法在Navcontroller上找到一个监听器进行交互。

我已经尝试将侦听器设置为BottomNavigationView,但结果是导航在重置后不再起作用。

requireActivity().bottomNavigationView.setOnNavigationItemSelectedListener{menuItem ->
            DialogUtil.showBeforeLeaveDetailFragmentDialog(context!!){
                requireActivity().bottomNavigationView.setOnNavigationItemSelectedListener(null)
                findNavController().navigate(menuItem.itemId)
            }
            false
        }

是否有可以使用的全局侦听器或其他清洁解决方案?

android kotlin android-jetpack android-jetpack-navigation
1个回答
0
投票

这应该工作。

requireActivity().bottomNavigationView.setOnNavigationItemSelectedListener{menuItem ->
            DialogUtil.showBeforeLeaveDetailFragmentDialog(context!!){
                return NavigationUI.onNavDestinationSelected(it, navController)
            }
            false
        }

我不知道你为什么要清除NavigationItemSelectedListener。解释你为什么这样做。

© www.soinside.com 2019 - 2024. All rights reserved.