gpt4 book ai didi

android - @anim/fragment_fade_enter 包含在哪里?

转载 作者:行者123 更新时间:2023-12-04 03:27:50 25 4
gpt4 key购买 nike

@anim/fragment_fade_enter 包含在 androidx.fragment:fragment-ktx:1.2.4 但在我将其更新到版本 1.3.3 我似乎无法再解决它,我在网上找到的所有内容都应该包含在Androidx Core中https://android.googlesource.com/platform/frameworks/base/+/master/core/res/res/animator/fragment_fade_enter.xml但使用 androidx.core:core-ktx:1.3.2 也无济于事。

它是否被重构为另一个依赖项?

最佳答案

@anim/fragment_ 资源始终是 TRANSIT_FRAGMENT_FADE 中使用的各种 FragmentTransaction.TRANSIT_ 字段(即 FragmentTransaction.setTransition() API )的私有(private)实现细节.

根据 Fragment 1.3.0 release notes :

  • TRANSIT_ animation changes: The fragment default effects, TRANSIT_FRAGMENT_OPEN, TRANSIT_FRAGMENT_CLOSE, and TRANSIT_FRAGMENT_FADE, now use Animator instead of Animation. The resources used to build these animators are now private.

因此,如果您自己使用 Fragment,则应该使用 setTransition() API,而不是手动使用任何这些私有(private)动画师。

如果您正在使用导航组件,navigation-ui 依赖项确实Navigation 2.3.1 release 起提供公共(public)动画师。 .您可以将它们用于:

  • @animator/nav_default_enter_anim
  • @animator/nav_default_exit_anim
  • @animator/nav_default_pop_enter_anim
  • @animator/nav_default_pop_exit_anim

截至目前,这些也是淡入淡出的动画。

关于android - @anim/fragment_fade_enter 包含在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67305830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com