Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HarlonWang/AVLoadingIndicatorView
DEPRECATED
https://github.com/HarlonWang/AVLoadingIndicatorView
android animation indicator loading
Last synced: about 2 months ago
JSON representation
DEPRECATED
- Host: GitHub
- URL: https://github.com/HarlonWang/AVLoadingIndicatorView
- Owner: HarlonWang
- Created: 2015-10-24T20:18:33.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-06T06:05:06.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T15:35:01.248Z (3 months ago)
- Topics: android, animation, indicator, loading
- Language: Java
- Homepage:
- Size: 13.7 MB
- Stars: 9,745
- Watchers: 260
- Forks: 1,896
- Open Issues: 75
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PLEASE NOTE, THIS PROJECT IS NO LONGER BEING MAINTAINED
* * *
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-AVLoadingIndicatorView-green.svg?style=flat)](https://android-arsenal.com/details/1/2686)
AVLoadingIndicatorView
===================> **Now AVLoadingIndicatorView was updated version to 2.X , If you have any question or suggestion with this library , welcome to tell me !**
## Introduction
AVLoadingIndicatorView is a collection of nice loading animations for Android.You can also find iOS version of this [here](https://github.com/ninjaprox/NVActivityIndicatorView).
## Demo
![avi](screenshots/avi.gif)## Usage
### Step 1
Add dependencies in build.gradle.
```groovy
dependencies {
compile 'com.wang.avi:library:2.1.3'
}
```### Step 2
Add the AVLoadingIndicatorView to your layout:
Simple
```java
```Advance
```java
```### Step 3
It's very simple use just like .
```java
void startAnim(){
avi.show();
// or avi.smoothToShow();
}
void stopAnim(){
avi.hide();
// or avi.smoothToHide();
}
```## Custom Indicator
See [MyCustomIndicator](https://github.com/81813780/AVLoadingIndicatorView/blob/master/app/src/main/java/com/wang/avi/sample/MyCustomIndicator.java) in Sample .
## Proguard
When using proguard need add rules:
```
-keep class com.wang.avi.** { *; }
-keep class com.wang.avi.indicators.** { *; }
```Indicators is load from class names, proguard may change it (rename).
## Indicators
As seen above in the **Demo**, the indicators are as follows:
**Row 1**
* `BallPulseIndicator`
* `BallGridPulseIndicator`
* `BallClipRotateIndicator`
* `BallClipRotatePulseIndicator`**Row 2**
* `SquareSpinIndicator`
* `BallClipRotateMultipleIndicator`
* `BallPulseRiseIndicator`
* `BallRotateIndicator`**Row 3**
* `CubeTransitionIndicator`
* `BallZigZagIndicator`
* `BallZigZagDeflectIndicator`
* `BallTrianglePathIndicator`**Row 4**
* `BallScaleIndicator`
* `LineScaleIndicator`
* `LineScalePartyIndicator`
* `BallScaleMultipleIndicator`**Row 5**
* `BallPulseSyncIndicator`
* `BallBeatIndicator`
* `LineScalePulseOutIndicator`
* `LineScalePulseOutRapidIndicator`**Row 6**
* `BallScaleRippleIndicator`
* `BallScaleRippleMultipleIndicator`
* `BallSpinFadeLoaderIndicator`
* `LineSpinFadeLoaderIndicator`**Row 7**
* `TriangleSkewSpinIndicator`
* `PacmanIndicator`
* `BallGridBeatIndicator`
* `SemiCircleSpinIndicator`
**Row 8**
* `com.wang.avi.sample.MyCustomIndicator`## Thanks
- [NVActivityIndicatorView](https://github.com/ninjaprox/NVActivityIndicatorView)
- [Connor Atherton](https://github.com/ConnorAtherton)## Contact me
If you have a better idea or way on this project, please let me know, thanks :)
[Email](mailto:[email protected])
[Weibo](http://weibo.com/601265161)
[My Blog](http://hlong.xyz)
### License
```
Copyright 2015 jack wangLicensed 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 athttp://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.
```