happydog-intj/circleprogress

CircleProgress, DonutProgress, ArcProgress for Android

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 47 minutes ago
Added to GitGenius on September 18th, 2026
Created on October 30th, 2014
Open Issues & Pull Requests: 71 (+0)
GitHub issues: Enabled
Number of forks: 911
Total Stargazers: 3,795 (+0)
Total Subscribers: 135 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 2026.1 days
Mean response time: 1701.6 days
90th percentile: 3397.0 days
Tracked items: 13

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 1
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 3,307 days
Stale 30+ days: 1
Stale 90+ days: 1

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

CircleProgress is an Android library that provides circular, donut, and arc-shaped progress view components.

The library addresses the need for visually distinct progress indicators in Android applications beyond standard linear progress bars. It offers three specialized view types: CircleProgress for full circular progress displays, DonutProgress for ring-shaped progress with optional center content, and ArcProgress for partial arc progress indicators. Each view type supports customization through XML attributes and can be integrated into layouts using standard Android view inflation.

DonutProgress distinguishes itself by supporting inner drawables and VectorDrawables in its center, making it suitable for progress displays that need to combine visual feedback with additional imagery or icons. The library suits projects requiring non-standard progress visualization, particularly applications that benefit from circular or donut-shaped indicators for aesthetic or UX reasons. CircleProgress is appropriate for developers building Android applications targeting API level 21 and above who want ready-made progress components without implementing custom drawing code.

The project underwent significant modernization in its most recent major version, migrating to AndroidX and updating build tooling to current standards including AGP 8.x and Gradle 8.x. Performance improvements were made by replacing a busy-loop animation in ArcProgress with ValueAnimator, moving expensive RectF calculations out of the onDraw method in DonutProgress, and eliminating redundant Paint object recreation. The library added accessibility support through screen reader compatibility across all view types and changed CircleProgress progress values from integers to floats for finer-grained control. Build configuration was simplified by publishing through JitPack using maven-publish rather than previous distribution methods.