支持-v4:27.1.0 片段自定义动画无法按预期工作



片段动画无法正常工作support-v4:27.1.0

getSupportFragmentManager()
       .beginTransaction()
       .setCustomAnimations(ENTER_ANIM , LEAVE_ANIM)
       .replace(R.id.main_activity_fragment_place_holder, fragment)
       .addToBackStack(tag)
       .commitAllowingStateLoss();

进入动画

<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="0.0" android:toAlpha="1.0"
android:duration="500" />

离开动画

<alpha xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator"
android:fromAlpha="1.0" android:toAlpha="0.0"
android:duration="500" />

我刚刚遇到了同样的问题。支持库 27.1.0 似乎在使用 alpha 属性的动画过渡方面存在问题。

我的印象是过渡引擎没有正确实现"填充后",因此片段 alpha 在片段被删除之前迅速反弹回 1。这会导致闪烁效果,其中替换的片段短暂可见,然后消失。

我解决了切换到动画器过渡的问题。

即替换我的/res/anim/fade_in.xml

<?xml version="1.0" encoding="utf-8"?>
<alpha
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromAlpha="0"
    android:toAlpha="1"
    android:duration="500"
    />

使用类似的/res/animator/fade_in.xml

<?xml version="1.0" encoding="utf-8"?>
<objectAnimator
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:propertyName="alpha"
    android:valueFrom="0"
    android:valueTo="1"
    android:duration="500"
    />

我对fade_out过渡做了同样的事情。

闪烁效果已在最新的支持库版本 27.1.1 中修复。(见问题74051124(

支持库从 27.0.2 升级到 27.1.0 后,我遇到了完全相同的问题。碎片没有平滑褪色,而是闪烁了几次。

似乎所有动画师都按预期工作,除了alpha动画师。

但是,我找到了此错误的解决方法:如果禁用输入动画,过渡仍然会褪色。它不会像以前那样褪色,但在我看来它看起来不错(甚至更好(。

新的输入动画(我已将其命名为nothing.xml(是:

<?xml version="1.0" encoding="utf-8"?>
<set/>

相关内容

  • 没有找到相关文章

最新更新