All Projects → michelelacorte → Elasticprogressbar

michelelacorte / Elasticprogressbar

Licence: apache-2.0
Elastic Progress Bar Renew!

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Elasticprogressbar

XCArcProgressView
Android开口圆环比例进度View(高仿猎豹清理大师内存占用比例View)
Stars: ✭ 28 (-91.08%)
Mutual labels:  progress-bar, android-ui
Avatarview
A circular Image View with a lot of perks. Including progress animation and highlight state with borders and gradient color.
Stars: ✭ 429 (+36.62%)
Mutual labels:  android-ui, progress-bar
Sequent
A simple continuous animation library for Android UI.
Stars: ✭ 263 (-16.24%)
Mutual labels:  android-ui
Skeleton
A library provides an easy way to show skeleton loading view like Facebook and Alipay
Stars: ✭ 3,368 (+972.61%)
Mutual labels:  android-ui
Progress bar
Command-line progress bars and spinners for Elixir.
Stars: ✭ 281 (-10.51%)
Mutual labels:  progress-bar
Slidingrootnav
DrawerLayout-like ViewGroup, where a "drawer" is hidden under the content view, which can be shifted to make the drawer visible.
Stars: ✭ 2,939 (+835.99%)
Mutual labels:  android-ui
Rsup Progress
❤️ A simple progress bar with promises support
Stars: ✭ 290 (-7.64%)
Mutual labels:  progress-bar
Tableview
TableView is a powerful Android library for displaying complex data structures and rendering tabular data composed of rows, columns and cells.
Stars: ✭ 2,928 (+832.48%)
Mutual labels:  android-ui
Autocomplete
Simple yet powerful autocomplete behavior for EditTexts, to avoid working with MultiAutoCompleteTextView APIs.
Stars: ✭ 307 (-2.23%)
Mutual labels:  android-ui
Spotlight
Android Library that lights items for tutorials or walk-throughs etc...
Stars: ✭ 3,143 (+900.96%)
Mutual labels:  android-ui
Xui
💍A simple and elegant Android native UI framework, free your hands! (一个简洁而优雅的Android原生UI框架,解放你的双手!)
Stars: ✭ 3,571 (+1037.26%)
Mutual labels:  android-ui
Cornersheet
Behavior to expand view from corner
Stars: ✭ 274 (-12.74%)
Mutual labels:  android-ui
Carbon
Material Design implementation for Android 4.0+. Shadows, ripples, vectors, fonts, animations, widgets, rounded corners and more.
Stars: ✭ 2,942 (+836.94%)
Mutual labels:  android-ui
Bottomdrawer
BottomSheet with animations
Stars: ✭ 291 (-7.32%)
Mutual labels:  android-ui
Progress.swift
⌛️ Add beautiful progress bars to your loops.
Stars: ✭ 265 (-15.61%)
Mutual labels:  progress-bar
React Snakke
🐍 Reading position indicator for React
Stars: ✭ 306 (-2.55%)
Mutual labels:  progress-bar
Topbar
Tiny & beautiful site-wide progress indicator
Stars: ✭ 262 (-16.56%)
Mutual labels:  progress-bar
Touchdemo
Custom touch handling in Android
Stars: ✭ 273 (-13.06%)
Mutual labels:  android-ui
Stickyscrollview
Sticky header and footer for android ScrollView.
Stars: ✭ 284 (-9.55%)
Mutual labels:  android-ui
Avatar View
Avatar ImageView with user's name first letter Drawable placeholder
Stars: ✭ 309 (-1.59%)
Mutual labels:  android-ui

ElasticProgressBar

Twitter

API

License

Android Arsenal alt tag

Awesome

alt tag

alt tag

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

##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:[email protected]'

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;

alt tag

alt tag

##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!

Get it on Google Play

####If you want to help me please download Donation App!!

Get it on Google Play

##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 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+

##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 🍻!

Beerpay Beerpay

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].