0

将Navigation 组件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)
    }
4

1 回答 1

-2

添加动画默认文件,可以更改动画。

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>
于 2019-11-21T06:19:26.350 回答