Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ishaan1995/ButtonProgressBar
A Download Button ProgressBar, inspiration from Dribbble
https://github.com/ishaan1995/ButtonProgressBar
android-library dribbble progress-bar ui
Last synced: 3 months ago
JSON representation
A Download Button ProgressBar, inspiration from Dribbble
- Host: GitHub
- URL: https://github.com/ishaan1995/ButtonProgressBar
- Owner: ishaan1995
- License: apache-2.0
- Created: 2017-03-28T21:49:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T14:35:45.000Z (over 6 years ago)
- Last Synced: 2024-06-16T01:31:45.616Z (5 months ago)
- Topics: android-library, dribbble, progress-bar, ui
- Language: Java
- Homepage:
- Size: 134 KB
- Stars: 504
- Watchers: 9
- Forks: 74
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-android-ui - ButtonProgressBar - 下载按钮进度条 (按钮)
README
# ButtonProgressBar
[![](https://jitpack.io/v/ishaan1995/ButtonProgressBar.svg)](https://jitpack.io/#ishaan1995/ButtonProgressBar)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-ButtonProgressBar-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/5482)![](https://raw.githubusercontent.com/ishaan1995/ButtonProgressBar/master/output_F2Ryon.gif "Concept Animation")
## To get this Git project into your build:
#### 1.Add this in your root build.gradle at the end of repositories:```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```#### 2.Add this dependency in your app level build.gradle:
```
dependencies {
compile 'com.github.ishaan1995:ButtonProgressBar:1.0'
}
```## Usage:
#### 1.In your layout XML file:
```xml```
#### 2.In your class file:
```java
final ButtonProgressBar bar = (ButtonProgressBar) findViewById(R.id.bpb_main);
bar.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
bar.startLoader();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
bar.stopLoader();
}
}, 5000);
}
});
```Inspiration from [Dribbble](https://dribbble.com/shots/2551579-Download-Button)
[iOS version](https://github.com/thePsguy/ButtonProgressBar-iOS) available!
License
=======Copyright 2017 Ishaan Kakkar
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 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.