将Navigation component与BottomNavigationView一起使用时,如何禁用/更改淡入淡出动画?
我将它们设置在一起(在活动中)的代码如下:
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)
}
答案 0 :(得分:0)
添加动画默认文件,即可更改动画。
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
像下面的a一样,禁用动画。
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
</set>