nakker1218 / RotateProgress

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RotateProgressLibrary

Download Apache 2.0

An Android Animation library which easily add rotate progress bar.

How to use

Integration

dependencies {
    compile 'com.shohei.rotateprogress:rotateprogress:0.1.1'
}

Usage

RotateProgressBar rotateProgressBar = (RotateProgressBar) findViewById(R.id.rotate_progress_bar);

rotateProgressBar.start();

Advanced 1

You can change the rotate duration.

rotateProgressBar.setDuration(2000);

Advanced 2

You can change the progress bar Color.

rotateProgressBuilder.setColors(Color.RED, Color.BLUE, Color.GREEN, Color.CYAN);
rotateProgressBuilder.setColors("#F44336", "#E91E63", "#9C27B0", "#673AB7");

// for color.xml
rotateProgressBuilder.setColorsResource(R.color.colorPrimary, R.color.colorAccent, R.color.colorPrimaryDark);

License

Copyright 2016 nakkar1218

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

License:Apache License 2.0


Languages

Language:Java 100.0%