如何将导航组件与底部导航视图一起使用时禁用/更改淡入淡出动画?
我将它们一起设置(在活动中(的代码如下:
private fun setupBottomNavMenu() {
val navController = Navigation.findNavController(this, R.id.main_navigation_fragment)
val bottomNavigation = findViewById<BottomNavigationView>(R.id.bottom_navigation)
NavigationUI.setupWithNavController(bottomNavigation, navController)
}
添加动画默认文件,您可以更改动画。
res/anim/nav_default_enter_anim.xml
res/anim/nav_default_exit_anim.xml
res/anim/nav_default_pop_enter_anim.xml
res/anim/nav_default_pop_exit_anim.xml
像下面一样,禁用动画。
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
</set>