AndroidViewAnimations icon indicating copy to clipboard operation
AndroidViewAnimations copied to clipboard

Cute view animation collection.

Results 67 AndroidViewAnimations issues
Sort by recently updated
recently updated
newest added

I tried using interpolator but it has no effect

Hi, How to perform two animations in parallel (= at the same time) ? Thanks

老哥,你的各种开源组件做的真的是nb的一批(先崇拜一波)我的软件在这个动画出现了问题,`FlipInX`,是一个输入历史,就触发 ``` YoYo.with(Techniques.FlipInX).duration(300).playOn(cview2); cview2.setVisibility(VISIBLE);(一开始该组件INVISIBLE) ``` 这两个的时候,真机的所占内存暴增从105m到几个g。我一开始以为是我的键盘弹出监听事件有关,但是后来用edittext的监听事件触发该动画,同样会导致这个问题,好像是内存泄漏?我把动画换成`FadeIn`就没有任何问题。还有就是。。。这个bug只存在真机上,我用虚拟机一点问题都没有。。。 与你的安装方式不同的是,我用的 ` implementation 'com.android.support:support-compat:28.0.0-beta01' ` 真机测试为:pixel xl 9.0(最近升级的)

using `compile` is going to be obsolete, and I felt this library is very useful so it should be implemented with new gradle standard of `implementation`

When I play some rotating animation on a view: YoYo.with(Techniques.RollOut).delay(500).playOn(pig); then need to clear animations to reset the view: pig.clearAnimation(); The view then stops animating but it's not back to...

调用如下代码隐藏view控件后,调用view.setVisibility(View.VISIBLE);无法恢复显示,请问该如何处理 YoYo.with(Techniques.SlideOutUp).duration(300).onEnd(new YoYo.AnimatorCallback() { @Override public void call(Animator animator) { view.setVisibility(View.INVISIBLE); } }).playOn(view);

Hello :) thank for the great library 👍 i wanted to know How i can set the pivot of animation to center of my view i already try .pivot(0f,0f) but...

``` YoYo.with(Techniques.Pulse) .duration(1000) .repeat(1000) .delay(5000) .playOn(view.findViewById(R.id.relFive)); ``` delay not work , repeat and delay together