ArcAnimator helps to create arc transition animation
ArcAnimator
ArcAnimator helps to create arc transition animation: 14+
Usage
Add the library to your project:
compile 'com.github.asyl.animation:arcanimator:1.0.0'
Then use it in your project code:
//set up clipView and coordinates where clipView will move
ArcAnimator.createArcAnimator(clipView, endX, endY, DEGREE, SIDE)
.setDuration(500)
.start();
//or specify nestView for clipView. Animator will take center x,y coordinates of nestView
ArcAnimator.createArcAnimator(clipView, nestView, DEGREE, SIDE)
.setDuration(500)
.start();