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!
##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.4'
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.4@aar'
In you layout.xml
<it.michelelacorte.elasticprogressbar.ElasticDownloadView
android:id="@+id/elastic_download_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"/>
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;
##SYSTEM REQUIREMENT
Android API 11+
##CHANGELOG
v1.0.4
- Compatibility with API 11+
- Added boolean
noIntrofor 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.javafor set-up progress bar with your own options - Added method
isAnimationFinished()called by mElasticDownloadView - Removed
@InjectViewannotation for set-up progress bar (from lib com.jakewharton:butterknife)
Method called by OptionView
- Added method
setBackgroundColorSquare(int color)default iscolorPrimary - Added method
getColorBackgroundSquare() - Added method
setColorCloud(int color)default isColor.WHITE - Added method
getColorCloud - Added method
setColorProgressBar(int color)default isColor.BLACK - Added method
getColorProgressBar - Added method
setColorProgressBarInProgress(int color)default isColor.BLACK - Added method
getColorProgressBarInProgress - Added method
setColorProgressBarText(int color)default isColor.BLACK - Added method
getColorProgressBarText - Added method
setColorSuccess(int color)default iscolorPrimary - Added method
getColorSuccess - Added method
setColorFail(int color)default iscolorPrimary - Added method
getColorFail - Added boolean
noBackgrounddefault is false
##CREDITS
Author: Tibolte https://github.com/Tibolte/ElasticDownload
Edit by: Michele Lacorte (micky1995g@gmail.com)
##LICENSE
ElasticProgressBar new license
Copyright 2015 Michele Lacorte
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.
ElasticProgressBar original license
Copyright 2015 Thibault Guégan and Aron Ingi Óskarsson
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.




