Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlazaro66/WheelIndicatorView
A 'Google Fit' like activity indicator for Android
https://github.com/dlazaro66/WheelIndicatorView
Last synced: about 6 hours ago
JSON representation
A 'Google Fit' like activity indicator for Android
- Host: GitHub
- URL: https://github.com/dlazaro66/WheelIndicatorView
- Owner: dlazaro66
- License: apache-2.0
- Created: 2015-05-29T08:19:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-23T12:23:55.000Z (over 9 years ago)
- Last Synced: 2023-10-20T19:23:16.901Z (about 1 year ago)
- Language: Java
- Size: 877 KB
- Stars: 396
- Watchers: 9
- Forks: 64
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/dlazaro66/WheelIndicatorView
- awesome-android-ui - https://github.com/dlazaro66/WheelIndicatorView
README
WheelIndicatorView [![Build Status](https://travis-ci.org/dlazaro66/WheelIndicatorView.svg?branch=master)](https://travis-ci.org/dlazaro66/WheelIndicatorView) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-WheelIndicatorView-green.svg?style=flat)](https://android-arsenal.com/details/1/1912) [ ![Download](https://api.bintray.com/packages/dlazaro66/maven/WheelIndicatorView/images/download.svg) ](https://bintray.com/dlazaro66/maven/WheelIndicatorView/_latestVersion)
===
A 'Google Fit' like activity indicator for AndroidScreenshots
-----------![Image](../master/art/animated_wheelview.gif?raw=true)
Usage
-----How to use:
- Add a "WheelIndicatorView" in the layout editor like you actually do with a button for example
```xml
```
- You can set different attributes just as:- Lines size: WheelIndicatorView:itemsLineWidth
- Inner circle background color: WheelIndicatorView:backgroundColor
- % of circle filled: WheelIndicatorView:filledPercent- Also, you can declare it programmatically:
```
WheelIndicatorView wheelIndicatorView = new WheelIndicatorView(context);
```- Then add elements to the indicator view, declaring as many WheelIndicatorItem objects as you want:
```
WheelIndicatorItem bikeActivityIndicatorItem = new WheelIndicatorItem(1.5f , Color.parseColor("#FF5722"));
```
- Every ``` WheelIndicatorItem ``` should have a _weight_ and the chart will draw it as needed, comparing all data set.- If data set changed, you should call ``` wheelIndicatorView.notifyDataSetChanged() ``` as you would do with an adapter.
- Animate the chart once you added all your elements with ``` wheelIndicatorView.startItemsAnimation() ```
- If you don't want your chart to be completed at 100% (for example if you're representing user fitness activity and daily target is only done at 35%) you should call ``` wheelIndicatorView.setFilledPercent(35) ```
Add it to your project
----------------------Add WheelIndicatorView dependency to your build.gradle
```groovy
dependencies{
compile 'com.dlazaro66.wheelindicatorview:WheelIndicatorView:1.0.0'
}
```Do you want to contribute?
--------------------------Please send a PR or open an issue with your comments!
Developed By
------------* David Lázaro Esparcia -
Who's using it
--------------*Does your app use WheelIndicatorView? If you want to be featured on this list drop me a line.*
Contributors
------------
* [David Lázaro Esparcia][1]License
-------Copyright 2015 David Lázaro
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.[1]: https://github.com/dlazaro66