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

Hello Sir, I try to do the execution after the animation complete as below : .onEnd(new YoYo.AnimatorCallback() { @Override public void call(Animator animator) { NextFunction(); // i want to call...

How Can i set delay for all repeat ?

Hi, great library! I experience the following issue: When I create an animation with a delay the onAnimationStart method is called immediately. I think it should be called after the...

For example, i want to hide the view after 'SlideOutUp' (View.GONE like, no space allotment) and show the view after `SlideInDown` (View.VISIBLE like)

Y-axis animations such as SlideIndown, SlideOutUp, during animation running, the background is white color, i think better to have option set the height instead let it white color, then other...

I have set android:scaleX="-1" on an imageview. If I animate this imageview, my image loses it's android:scaleX="-1" value. I want to animate my mirrored image. But I can't.

I want to open spinner using animation. RotateInDownRight animation works perfectly for me but problem is that position where animation started is very up. I want to give position for...

Hi! This is the first time I'm using this library in a RecyclerView. I'm running ``` // now animate the shit out of this baby YoYo.with(Techniques.SlideInUp).playOn(holder.cardView); ``` And it raises...

I used this like this ``` View convertView = mInflater.inflater(R.layout.layout_qr_code, null); windowManager.addView(convertView, params); YoYo.with(Techniques.ZoomInRight) .duration(5000) .repeat(1) .playOn(convertView); ``` but I did not see the effect, I hope you will reply...