Circular Imageview with Rotate Animation
This is a fast and efficient open source custom imageview for Android that allow to easy implement disc animation that usually appear in Music Players.
It uses custom View and support animation
- Start Animation
- Cancel Animation
- Pause Animation
- Set Duration
Sample
Installation
Gradle
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
implementation 'com.github.annhienktuit:CircularImageviewRotation:1.0.8'
}
Note: If this error appear: "Build was configured to prefer settings repositories over project repositories" you can workaround like this:
Replace the line:
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
with
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
Usage/Examples
var imageview: CircularImageView
var animation: RotateAnimation
animation = RotateAnimation(this, imageview)
animation.setDuration(20000) //set duration
animation.startAnimation() //start
animation.pause() //pause
animation.resume() //resume
animation.cancel() //cancel