Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以在BottomNavigationView的项目之间手动切换?
我在源代码中找不到任何相关的方法。
好的,我找到了一个临时解决方法,直到官方更新解决了这个问题。
((BottomNavigationMenuView) bottomNav.getChildAt(0)).getChildAt(ITEM_INDEX).callOnClick();
Hamed 解决方案的更安全替代方案如下:
bottomNav.setSelectedItemId(bottomNav.getMenu().getItem(ITEM_INDEX).getItemId());