我有一个BottomNavigation,它显示了几个项目,通过这段代码,我设法在所需的项目上启动了BottomNavigation
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_content, new ProfileFragment()).commit();
这是我的ProfileFragment。
当它开始给Fragment充气时,就可以了,但是下面的滑块没有选择标签,应该是
如何同时更新这两件事?
答案 0 :(得分:1)
我假设您是在谈论BottomNavigationView
,即com.google.android.material.bottomnavigation.BottomNavigationView
,在这种情况下,我可以说它的工作原理类似于菜单,并且其状态(选择)可以像菜单一样手动维护
针对您的问题,您可以使用
BottomNavigationView#setSelectedItemId(@IdRes int itemId)