You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

com.chillerlabs:android-circular-progress-bar

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.chillerlabs:android-circular-progress-bar

A customizable circular progress bar for Android.

0.0.1
Source
mavenMaven
Version published
Maintainers
2
Source

android-circular-progress-bar

A customizable circular progress bar for Android.

Why use this?

We wanted a circular progress bar with a customizable starting point, direction, and complex gradients. We found that we couldn't do that with the stock Android components (ring shape, sweep gradient, etc.). So we built our own.

Examples

Beautiful gradients

Beautiful gradient ```java ProgressBar progressBar = (ProgressBar) view.findViewById(R.id.progress_bar);

CircularProgressBarDrawable drawable = new CircularProgressBarDrawable(); drawable.setColors(new int[]{0xffff0000, 0xffff00a8, 0xffb400ff, 0xff2400ff, 0xff008aff, 0xff00ffe4, 0xff00ff60, 0xff0cff00, 0xffa8ff00, 0xffffc600, 0xffff3600, 0xffff0000}); progressBar.setProgressDrawable(drawable); progressBar.setMax(100); progressBar.setProgress(100);


<div />
## Custom starting points

## Custom directions

# Installation

## Gradle

## Maven

## Jar

FAQs

Package last updated on 22 May 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts