ElasticProgressBar alternatives and similar packages
Based on the "Other Widget" category.
Alternatively, view ElasticProgressBar alternatives based on common mentions on social networks and blogs.
-
AndroidSlidingUpPanel
This library provides a simple way to add a draggable sliding up panel (popularized by Google Music and Google Maps) to your Android application. Brought to you by Umano. -
BottomBar
(Deprecated) A custom view component that mimics the new Material Design Bottom Navigation pattern. -
ShortcutBadger
An Android library supports badge notification like iOS in Samsung, LG, Sony and HTC launchers. -
SystemBarTint
[DEPRECATED] Apply background tinting to the Android system UI when using KitKat translucent modes -
TapTargetView
An implementation of tap targets from the Material Design guidelines for feature discovery. -
android-viewbadger
[DEPRECATED] A simple way to "badge" any given Android view at runtime without having to cater for it in layout -
android-stackblur
Android StackBlur is a library that can perform a blurry effect on a Bitmap based on a gradient or radius, and return the result. The library is based on the code of Mario Klingemann. -
android-iconify
Android integration of multiple icon providers such as FontAwesome, Entypo, Typicons,... -
DraggablePanel
DISCONTINUED. Android library used to create an awesome Android UI based on a draggable element similar to the last YouTube graphic component. -
aFileChooser
DISCONTINUED. [DEPRECATED] Android library that provides a file explorer to let users select files on external storage. -
Swipecards
A Tinder-like Android library to create the swipe cards effect. You can swipe left or right to like or dislike the content. -
TourGuide
TourGuide is an Android library that aims to provide an easy way to add pointers with animations over a desired Android View -
StickyGridHeaders
DISCONTINUED. An Android Library that makes it easy to make grid views with sectioned data and headers that stick to the top. -
FloatingView
FloatingView can make the target view floating above the anchor view with cool animation -
TileView
TileView is a subclass of android.view.ViewGroup that asynchronously displays, pans and zooms tile-based images. Plugins are available for features like markers, hotspots, and path drawing. -
Bubbles for Android
Bubbles for Android is an Android library to provide chat heads capabilities on your apps. With a fast way to integrate with your development. -
RippleView
View that imitates Ripple Effect on click which was introduced in Android L (for Android 2.3+) -
Android-ActionItemBadge
This library offers a simple method to add a small badge icon to your ActionBar-MenuItem -
android-sliding-layer-lib
DISCONTINUED. Highly customizable SlidingLayer as you have seen in Wunderlist -
SortableTableView
An Android library containing a simple TableView and an advanced SortableTableView providing a lot of customisation possibilities to fit all needs. -
ScratchView
ScratchView repo is UX Design involving scratch cards like views which are scratched to reveal the information they conceal. -
FabricView
A new canvas drawing library for Android. Aims to be the Fabric.js for Android. Supports text, images, and hand/stylus drawing input. The library has a website and API docs, check it out
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ElasticProgressBar or a related project?
README
ElasticProgressBar
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!
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!!
If you want to contribute you may download Donation App 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
<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;
GENERAL ISSUE
- Refer to issue #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
- 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 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
noBackground
default is false
CREDITS
Author: Tibolte https://github.com/Tibolte/ElasticDownload
Edit by: Michele Lacorte ([email protected])
Follow my Google+
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.
Support on Beerpay
Hey dude! Help me out for a couple of :beers:!
*Note that all licence references and agreements mentioned in the ElasticProgressBar README section above
are relevant to that project's source code only.