单击项目时底部导航不导航



我有一个底部导航菜单,包含3项:主页、收藏夹和设置。我正在使用碎片容器:

<FrameLayout android:id="@+id/fragment_container" />
<com.google.android.material.bottomnavigation.BottomNavigationView app:menu="@menu/bottom_navigation_menu" />

在我想要实际导航的BaseFragment中,我使用setOnNavigationItemSelectedListener,其中我覆盖了onNavigationItemSelected(item: MenuItem)函数

override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
childFragmentManager.beginTransaction().replace(R.id.fragment_container, BeerListFragment())
.commit()
val bottomNavigationView: BottomNavigationView? = view?.findViewById(R.id.bottom_navigation)
bottomNavigationView?.setOnNavigationItemSelectedListener(object :
BottomNavigationView.OnNavigationItemSelectedListener {
override fun onNavigationItemSelected(item: MenuItem): Boolean {
var activeFragment: Fragment = BeerListFragment()
when (item.itemId) {
R.id.nav_home -> let {
activeFragment = BeerListFragment()
return true
}
// similiar for the other two options
}
childFragmentManager.beginTransaction()
.replace(R.id.fragment_container, activeFragment).commit()
return true
}
})

问题似乎是在when()语句中没有检查片段布局的id。如果我在onCreate()函数的第一行中传递与BeerListFragment()不同的内容,它会起作用,所以我认为setOnNavigationItemSelectedListener应该有问题。

有没有其他方法可以让我导航到特定的片段?我尝试过在navigation_graph中使用操作,但我认为没有必要,因为我有一个底部导航菜单。

如果您使用导航组件,为什么要使用childFragmentManager.beginTransaction().replace(R.id.fragment_container, BeerListFragment()).commit()

如果您使用导航组件,并且希望BottomNavigationView项目重定向到fragment,则除了在BottomNavigationView菜单的项目中提供正确的ID之外,不需要任何代码。

这里有一个快速教程可以帮助你。

相关内容

  • 没有找到相关文章

最新更新