android-rotation-animation

Additional

Language
Java
Version
N/A
Created
Jan 2, 2018
Updated
Jan 2, 2018 (Retired)
Owner
Anil Paudel (theanilpaudel)
Contributor
Anil Paudel (theanilpaudel)
1
Activity
Badge
Generate
Download
Source code

android-rotation-animation

A library for rotating a view in android.

Installing

A step by step series of examples that tell you have to install this library in Android Studio

Add this to your app level build.gradle file repository part

maven { url 'https://dl.bintray.com/theanilpaudel/android/' }

Then in the dependencies add this

implementation 'theanilpaudel:rotatinganimation:1.0.0'

Usage

This library is very easy to use.

Rotation rotation = new Rotation(imageView,fromDegree,toDegree,pivotX,pivotY,pivotXType,pivotYType);
rotation.roatateView(duration);
rotation.stopRotation(afterDuration);

Example

Rotation rotation = new Rotation(imageView,0,350,30,10,Rotation.ABSOLUTE,Rotation.ABSOLUTE);
rotation.roatateView(700);
rotation.stopRotation(5000);

Built With

  • Maven - Dependency Management

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details