Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andyb129/beerprogressview
A library that lets you create a beer styled progress view with bubbles and all! (hic) :beer:
https://github.com/andyb129/beerprogressview
android beer bubble gradle loading-animations progress-bar
Last synced: 6 days ago
JSON representation
A library that lets you create a beer styled progress view with bubbles and all! (hic) :beer:
- Host: GitHub
- URL: https://github.com/andyb129/beerprogressview
- Owner: andyb129
- Created: 2016-05-10T21:47:54.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-03T08:57:17.000Z (almost 7 years ago)
- Last Synced: 2025-01-16T22:11:40.599Z (13 days ago)
- Topics: android, beer, bubble, gradle, loading-animations, progress-bar
- Language: Java
- Homepage:
- Size: 3.18 MB
- Stars: 239
- Watchers: 10
- Forks: 40
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Beer Progress View
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-BeerProgressView-green.svg?style=true)](https://android-arsenal.com/details/1/3594)A cool beer styled progress view with realistic bubbles*. Cheers!
* Increment progress.
* Change beer colour.
* Change wave size.
* Change bubble colour.
* Change bubble count(*realism of bubbles not guaranteed)
### Setup
To use **BeerProgressView** in your projects, simply add the library as a dependency to your build.##### Gradle
```
dependencies {
compile 'uk.co.barbuzz:beerprogressview:0.0.6'
}
```##### Maven
```uk.co.barbuzz.beerprogressview
beerprogressview
0.0.6
pom```
Alternatively you can directly import the /library project into your Android Studio project and add it as a dependency in your build.gradle.
The library is currently configured to be built via Gradle only. It has the following dependencies:
* Nine old androids - com.nineoldandroids:library:2.4.0
* Compiled SDK Version - lollipop-23
* Minimum SDK Version - >= Gingerbread-10### Usage
For more detailed code example to use the library, Please refer to the `/sample` app.`BeerProgressView` can be added as a custom view to any layout.
```
```
You can then either set the xml parameters to configure the view or do it programmatically as follows
```
BeerProgressView beerProgressView = (BeerProgressView) findViewById(R.id.beerProgressView);
beerProgressView.setBeerColor(ContextCompat.getColor(mActivity, R.color.lager));
beerProgressView.setBubbleColor(ContextCompat.getColor(mActivity, R.color.lager_bubble));
beerProgressView.setBubbleCount(12);
beerProgressView.setMax(100);
beerProgressView.setAmplitude(4);
beerProgressView.setBeerProgress(10);
```### TODO
1. Improve draw efficiency of view### Thanks
This library has been made by pulling together two other open source libraries to get what I needed at the time. So huge thanks to the following libraries which this is based on.
* WaveProgrssView by [zeng1990java](https://github.com/zeng1990java) - [https://github.com/zeng1990java/WaveProgressView](https://github.com/zeng1990java/WaveProgressView)
* BubbleWallpaper by [vrnvikas](https://github.com/vrnvikas) - [https://github.com/vrnvikas/BubbleWallpaper](https://github.com/vrnvikas/BubbleWallpaper)Thanks to Contributors
LuizGadao
### Licence
```
Copyright (c) 2016 Andy BarberLicensed 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.
```