Android 安卓:添加“插值器”对动画没有任何影响

Android 安卓:添加“插值器”对动画没有任何影响,android,animation,android-animation,interpolation,Android,Animation,Android Animation,Interpolation,我正在使用著名的动画库为我的视图提供动画。我已经使用它有一段时间了,没有任何问题,但现在当我尝试将插值器设置为我的动画时,生成的动画没有改变。视图仍在设置动画,因为它在没有插值器的情况下设置了动画 我在代码中做了什么错事吗 YoYo.with(Techniques.SlideInRight) .duration(250) .interpolate(new DecelerateInterpolator())

我正在使用著名的动画库为我的视图提供动画。我已经使用它有一段时间了,没有任何问题,但现在当我尝试将
插值器设置为我的动画时,生成的动画没有改变。视图仍在设置动画,因为它在没有
插值器的情况下设置了动画

我在代码中做了什么错事吗

YoYo.with(Techniques.SlideInRight)
                .duration(250)
                .interpolate(new DecelerateInterpolator())
                .playOn(searchTags);
我甚至尝试向插值器添加一个巨大的
因子
100
,如下面的代码所示,但没有成功

YoYo.with(Techniques.SlideInRight)
                .duration(250)
                .interpolate(new DecelerateInterpolator(100)) //factor 100
                .playOn(searchTags);
xml中的searchTags

<me.gujun.android.taggroup.TagGroup
                        android:id="@+id/group_search_tags"
                        android:layout_height="wrap_content"
                        android:layout_width="wrap_content"
                        style="@style/TagGroup.Large"
                        app:atg_isAppendMode="true"/>

我认为这个问题可能与我通过库添加的标记视图有关,但是
插值器
即使与我的
recyclerView
动画也不起作用


我的代码或其他任何东西有问题吗?

如有反对票,请说明原因。您是否使用旧版本@DanielZolnai我用的是1.1.3,他们主页上提到的,我猜这是最新的