WheelIndicatorView

Additional

Language
Java
Version
N/A
Created
May 29, 2015
Updated
Jul 23, 2015 (Retired)
Owner
David Lázaro (dlazaro66)
Contributor
David Lázaro (dlazaro66)
1
Activity
Badge
Generate
Download
Source code

Advertisement

WheelIndicatorView

A 'Google Fit' like activity indicator for Android

Screenshots

Usage

How to use:

  • Add a "WheelIndicatorView" in the layout editor like you actually do with a button for example
 <com.dlazaro66.wheelindicatorview.WheelIndicatorView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/wheel_indicator_view"
        app:itemsLineWidth="13dp"
        app:filledPercent="40"
        app:backgroundColor="@color/white"
        />
  • 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

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

Who's using it

Does your app use WheelIndicatorView? If you want to be featured on this list drop me a line.

Contributors

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 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.