Code Monkey home page Code Monkey logo

circularprogressview's Introduction

CircularProgressView

Android Arsenal Preview-Appetize.io

A fancy CircularProgressView.

Installation

CircularProgressView is distributed through Maven Central and Jitpack.

implementation 'com.github.guilhe:circular-progress-view:${LATEST_VERSION}'

Maven Central

Usage

Check out the sample module where you can find a few examples of how to create it by xml or java.

Attributes accepted in xml:

    <attr name="max" format="integer" />
    <attr name="shadow" format="boolean" />
    <attr name="progressThumb" format="boolean" />
    <attr name="progressThumbSize" format="dimension" />
    <attr name="progressThumbSizeRate" format="float" />
    <attr name="progressThumbSizeMaxRate" format="float" />
    <attr name="startingAngle" format="integer" />
    <attr name="progress" format="integer" />
    <attr name="progressBarThickness" format="dimension" />
    <attr name="progressBarColor" format="color" />
    <attr name="progressBarColorArray" format="reference" />
    <attr name="progressBarColorArrayPositions" format="reference" />
    <attr name="duplicateFirstColorInArray" format="boolean" />
    <attr name="progressBarRounded" format="boolean" />
    <attr name="progressBackgroundColor" format="color" />
    <attr name="progressBackgroundAlphaEnabled" format="boolean" />
    <attr name="reverse" format="boolean" />
    <attr format="enum" name="progressThumbScaleType">
        <enum name="auto" value="0"/>
        <enum name="point" value="1"/>
        <enum name="rate" value="2"/>
    </attr>

Example:

<com.github.guilhe.views.CircularProgressView
    android:layout_width="100dp"
    android:layout_height="100dp"
    app:progress="60"
    app:progressBarThickness="10dp"
    app:progressBarColor="@android:color/holo_purple"/>

BindingAdapters

You can take advantage of Binding Adapters (from Data Binding) to create some helper attributes, example:

@BindingAdapter("progressAnimated")
fun setProgressAnimated(view: CircularProgressView, progress: Int) {
    view.setProgress(progress, true);
}
<com.github.guilhe.views.CircularProgressView
    ...
    app:progressAnimated="@{viewModel.progress}"/>

Progress with gradient

For the given array of colors:

<array name="rainbow">
    <item>#FFF60000</item>
    <item>#FFFF8C00</item>
    <item>#FFFFEE00</item>
    <item>#FF4DE94C</item>
    <item>#FF3783FF</item>
    <item>#FF4815AA</item>
</array>

The default result will be (left):

To achieve the result on the right side you have two options: either copy the first color and add it as last, or use the helper attribute/method that does that for you:

<attr name="duplicateFirstColorInArray" format="boolean"/>
fun setProgressColors(@NonNull @ColorInt int[] colors, @Nullable float[] positions, boolean duplicateFirst)

Finally, you may also use the attribute progressBarColorArrayPositions to pass a float[] positions:

<array name="rainbow_positions">
    <item type="dimen" format="float">.44</item>
    ...
</array>

note: when using the helper function and positions[], you'll have to add an extra position for the last one being copied.

There are many methods to help you customize this View by code. For more details checkout the sample app, javadocs or the code itself.

"Multiple Progress" for PieChart

fun setProgress(@NonNull List<Float> progressList, @NonNull List<Integer> progressColorList)

This mode can be used to display a simple pie chart. It will disable the progress thumb, the background color and the progress will not be round.

Sample

Sample

Animation last update on April, 2019

Get it on Google Play

Dependencies

Bugs and Feedback

For bugs, questions and discussions please use the Github Issues.

LICENSE

Copyright (c) 2017-present, GuilhE.

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.

circularprogressview's People

Contributors

burakozhan avatar codacy-badger avatar gdelgadobliss avatar gdmail91 avatar guilhe avatar sal0max avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

circularprogressview's Issues

Reverse progress [ENHANCEMENT]

This library would be perfect, if it had an attribute <attr name="reverse" format="boolean"/>, where the progress would run counter-clockwise, if set to true.

minSdkVersion

Manifest merger failed : uses-sdk:minSdkVersion 21 cannot be smaller than version 23 declared in library [com.github.guilhe:circular-progress-view:2.0.0] C:\Users\wilinz.gradle\caches\transforms-3\4a88ba944255ebbdfe19365beb85bd41\transformed\circular-progress-view-2.0.0\AndroidManifest.xml as the library might be using APIs not available in 21
Suggestion: use a compatible library with a minSdk of at most 21,
or increase this project's minSdk version to at least 23,
or use tools:overrideLibrary="com.github.guilhe.views.circularprogress" to force usage (may lead to runtime failures)

bar thickness isn't changing

Hi,

I love this control, it's very nicely done and easy to use, but I do have a strange problem. I want the bar thickness to expand so that it's essentially a circle with a shrinking cutout. I tried adjusting the progress bar thickness both in the layout file and in the activity itself, but it has no effect. This is strange, because I tested the sample project and the thickness can be changed through the UI. Am I doing something wrong or is this a bug? Thanks,,

Nate

Horizontal version

Hi, this library is awesome! i will be using this in my upcoming app. Do you plan to create horizontal progress bar too? i found this shadow/no shadow functionality very useful

Error adding dependency

When adding the view as a dependency, errors are generated in other dependencies like app compat

The getProgress() animation callback

I tried to show the value in the snackbar, but it always returns 0.

private void configCircularProgressView() {
        mCircularProgressView = findViewById(R.id.circle_progress_view);
        mCircularProgressView.setAnimationInterpolator(new AccelerateDecelerateInterpolator());
        mCircularProgressView.setProgress(120, true);
        Snackbar.make(findViewById(R.id.rootLayout), mCircularProgressView.getProgress()+"% concluído", Snackbar.LENGTH_LONG).show();
    }

Set padding to 0 when View is Match Parent?

Hi, is there any way to be able to set the padding to 0 when view is Match Parent. I have a Circular Progress bar inside a cardview and i want it to be touching the edges of cardview instead of "having a padding and being centered in parent layout". Thank you so much for your time and i would appreciate any feedback!👍

Permission Request

Hi,I am a Developer in China, your code is fantastic and I want to write a study note based on the project, may I quote your code and publish to the blog in China?

Possible bug in the deployment

Describe the bug

after adding the dependency:

implementation 'com.github.guilhe:circular-progress-view:2.0.0'

I get an error message from gradle saying:

Failed to resolve: null:unspecified:null

Background color is manipulated. It should not be.

if in the XML app:progressBarColor and app:backgroundColor are set to the same color I expect that the resulting circle is always full. Currently whatever is set as background color is reduced so it looks dim.

I have a usecase where the background needs to progress. (so the progressbar has a dim color and the remainder has a bright color) As the library is forcefully dimming the background color, I cannot realize my "bright color for remainder" design.

In this linked line you you set an Alpha value to the background color. This should be optional, not mandatory.
CircularProgressView.java Line 126

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.