Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michelelacorte/ElasticProgressBar
Elastic Progress Bar Renew!
https://github.com/michelelacorte/ElasticProgressBar
android android-library android-ui java progress-bar ui
Last synced: 6 days ago
JSON representation
Elastic Progress Bar Renew!
- Host: GitHub
- URL: https://github.com/michelelacorte/ElasticProgressBar
- Owner: michelelacorte
- License: apache-2.0
- Created: 2015-10-28T21:34:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-26T11:20:11.000Z (almost 8 years ago)
- Last Synced: 2024-08-16T14:34:32.329Z (4 months ago)
- Topics: android, android-library, android-ui, java, progress-bar, ui
- Language: Java
- Homepage:
- Size: 130 KB
- Stars: 315
- Watchers: 13
- Forks: 37
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android - ElasticProgressBar - Beautiful loading bar. (Libraries / GUI)
- awesome-android - ElasticProgressBar - Beautiful loading bar. (Libraries / GUI)
- Awesome-Mobile-UI - ElasticProgressBar
README
# ElasticProgressBar
[![Twitter](https://img.shields.io/badge/[email protected]?style=flat)](https://twitter.com/LacorteMichele)
[![API](https://img.shields.io/badge/API-11%2B-orange.svg?style=flat)](https://android-arsenal.com/api?level=11)
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ElasticProgressBar-green.svg?style=true)](https://android-arsenal.com/details/1/2826)
[![alt tag](http://www.android-gems.com/badge/michelelacorte/ElasticProgressBar.svg)](http://www.android-gems.com/lib/michelelacorte/ElasticProgressBar?lib_id=697)[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
![alt tag](https://raw.githubusercontent.com/Tibolte/ElasticDownload/master/success.gif)
![alt tag](https://raw.githubusercontent.com/Tibolte/ElasticDownload/master/fail.gif)
Elastic Progress Bar , is a loading bar made for Android , the initial design is https://github.com/Tibolte/ElasticDownload , I applied some changes to make it accessible to everyone!
![alt tag](http://i.giphy.com/3o85xBKcPnsY2xAuZi.gif)
##DONATIONS
This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you!
**PayPal**
* **[Donate $5]**: Thank's for creating this project, here's a coffee (or some beer) for you!
* **[Donate $10]**: Wow, I am stunned. Let me take you to the movies!ù
* **[Donate $15]**: I really appreciate your work, let's grab some lunch!
* **[Donate $25]**: That's some awesome stuff you did right there, dinner is on me!
* **[Donate $50]**: I really really want to support this project, great job!
* **[Donate $100]**: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
* **[Donate $2799]**: Go buddy, buy Macbook Pro for yourself!
Of course, you can also choose what you want to donate, all donations are awesome!! Follow this link [Donate](https://www.paypal.me/MicheleLacorte)!!
If you want to contribute you may download [Donation App](https://play.google.com/store/apps/details?id=it.michelelacorte.githubdonation) from Google Play
##USAGE
Elastic Progress Bar is pushed to JCenter, so you just need to add the following dependency to your `build.gradle`.
```
compile 'it.michelelacorte.elasticprogressbar:library:1.0.5'
```In alternative you can use AAR repository with:
```
allprojects {
repositories {
maven { url "https://dl.bintray.com/michelelacorte/maven/" }
jcenter()
mavenCentral()}
}
```And add this dependecies
```
compile 'it.michelelacorte.elasticprogressbar:library:1.0.5@aar'
```In you `layout.xml`
```
```Then in your `MainActivity.java`
```
ElasticDownloadView mElasticDownloadView;
mElasticDownloadView = (ElasticDownloadView)findViewById(R.id.elastic_download_view);//Call startIntro() to start animation
mElasticDownloadView.startIntro();//You can set progress
mElasticDownloadView.setProgress(10);//If is finish animation
mElasticDownloadView.success();
//Or fail
//mElasticDownloadView.fail();
```You can set color background with (default is `colorPrimary`), make sure to call this before `setContentView(..)` of your activity:
```
OptionView.setBackgroundColorSquare(int color)
```For set `noBackground` do this (without `setBackgroundColorSquare`, remember `setBackgroundColorSquare` is priority than `noBackground`
```
OptionView.noBackground = true;
```![alt tag](http://s27.postimg.org/t7xk0iqz7/Screenshot_2015_11_02_15_21_25.png)
![alt tag](http://s1.postimg.org/g5wq1wwn3/Screenshot_2015_11_02_15_21_32.png)
##GENERAL ISSUE
- Refer to issue [#3](https://github.com/michelelacorte/ElasticProgressBar/issues/3)
To solve `Error in parsing "g/"` you have to add on `defaultConfig` tag in `build.gradle` this line:generatedDensities = []
####Download Example App on Google Play!####If you want to help me please download Donation App!!
##SYSTEM REQUIREMENT
Android API 11+
##CHANGELOG
**v1.0.5**
- Fixed issue [#2](https://github.com/michelelacorte/ElasticProgressBar/issues/2)
- Update library and gradle to last version**v1.0.4**
- Compatibility with API 11+
- Added boolean `noIntro` for set-up progress bar with no intro (OptionView class)
- Added method `getProgress()` called by mElasticDownloadView
- Add Example App to GitHub repo**v1.0.2**
- Minor Bug Fixed
**v1.0.0**
- Support API 23
- Added class `OptionView.java` for set-up progress bar with your own options
- Added method `isAnimationFinished()` called by mElasticDownloadView
- Removed `@InjectView` annotation for set-up progress bar (from lib com.jakewharton:butterknife)Method called by `OptionView`
- Added method `setBackgroundColorSquare(int color)` default is `colorPrimary`
- Added method `getColorBackgroundSquare()`
- Added method `setColorCloud(int color)` default is `Color.WHITE`
- Added method `getColorCloud`
- Added method `setColorProgressBar(int color)` default is `Color.BLACK`
- Added method `getColorProgressBar`
- Added method `setColorProgressBarInProgress(int color)` default is `Color.BLACK`
- Added method `getColorProgressBarInProgress`
- Added method `setColorProgressBarText(int color)` default is `Color.BLACK`
- Added method `getColorProgressBarText`
- Added method `setColorSuccess(int color)` default is `colorPrimary`
- Added method `getColorSuccess`
- Added method `setColorFail(int color)` default is `colorPrimary`
- Added method `getColorFail`
- Added boolean `noBackground` default is false##CREDITS
Author: Tibolte https://github.com/Tibolte/ElasticDownload
Edit by: Michele Lacorte ([email protected])
Follow my [Google+](https://plus.google.com/u/0/collection/McidZB)
##LICENSE
ElasticProgressBar new license
```
Copyright 2015 Michele LacorteLicensed 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.
```ElasticProgressBar original license
```
Copyright 2015 Thibault Guégan and Aron Ingi ÓskarssonLicensed 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.
```[Donate $5]: https://www.paypal.me/MicheleLacorte/5
[Donate $10]: https://www.paypal.me/MicheleLacorte/10
[Donate $15]: https://www.paypal.me/MicheleLacorte/15
[Donate $25]: https://www.paypal.me/MicheleLacorte/25
[Donate $50]: https://www.paypal.me/MicheleLacorte/50
[Donate $100]: https://www.paypal.me/MicheleLacorte/100
[Donate $2799]: https://www.paypal.me/MicheleLacorte/2799## Support on Beerpay
Hey dude! Help me out for a couple of :beers:![![Beerpay](https://beerpay.io/michelelacorte/ElasticProgressBar/badge.svg?style=beer-square)](https://beerpay.io/michelelacorte/ElasticProgressBar) [![Beerpay](https://beerpay.io/michelelacorte/ElasticProgressBar/make-wish.svg?style=flat-square)](https://beerpay.io/michelelacorte/ElasticProgressBar?focus=wish)