Questions tagged «bottomnavigationview»



10
BottomNavigationView始终显示图标和文本标签
我正在使用设计支持库版本25中的android.support.design.widget.BottomNavigationView compile 'com.android.support:design:25.0.0' <android.support.design.widget.BottomNavigationView android:id="@+id/bottomBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_gravity="center" app:itemBackground="@color/colorPrimary" app:menu="@menu/bottom_navigation_main" android:forceHasOverlappingRendering="true"/> 当@ menu / bottom_navigation_main中只有三个操作时,它将始终显示图标和文本标签。 当动作多于三个时,始终显示图标和文本标签的方式是什么?

21
在Android BottomNavigationView中设置选定的项目
我正在使用android.support.design.widget.BottomNavigationView支持库中的新功能。如何通过代码设置当前选择?我意识到,旋转屏幕后,选择项又变回了第一项。当然,它也将有所帮助,如果有人能告诉我,如何“拯救”的当前状态BottomNavigationView的onPause功能,以及如何将其在恢复onResume。 谢谢!

8
将BottomNavigationView与新的NavController一起使用时,是否有办法使片段保持活动状态?
我正在尝试使用新的导航组件。我将BottomNavigationView与navController一起使用:NavigationUI.setupWithNavController(bottomNavigation,navController) 但是,当我切换片段时,即使以前使用过它们,它们每次都被销毁/创建。 有没有办法让我们的主要片段链接到我们的BottomNavigationView?


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.