作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 NavigationUI 将目的地绑定(bind)到菜单项,但如何覆盖默认动画过渡?
基于文档 https://developer.android.com/topic/libraries/architecture/navigation/navigation-ui#Tie-navdrawer ,我找不到任何可以添加动画过渡的方法。
最佳答案
NavigationUI 不提供该 API。但是,绝对不需要使用 NavigationUI
- 它只是可选的辅助方法。
因此您可以复制/构建what it actually does 的简化版本:
NavOptions navOptions = new NavOptions.Builder()
.setLaunchSingleTop(true) // Used to prevent multiple copies of the same destination
.setEnterAnim(R.anim.your_enter_anim)
.setExitAnim(R.anim.your_exit_anim)
.setPopEnterAnim(R.anim.your_pop_enter_anim)
.setPopExitAnim(R.anim.your_pop_exit_anim);
.build();
// Assuming you have a MenuItem named item
navController.navigate(item.getItemId(), null, options);
关于android - 如何在android中为NavigationUI添加动画过渡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53699469/
我是一名优秀的程序员,十分优秀!