Ranjithkumar
Ranjithkumar

Reputation: 18416

Android custom circle progress bar

enter image description here

I want to design Circle Progress like above image.

Even names and percentage Has to shown inside circle.

Please suggest me any library or method to do so.

Upvotes: 2

Views: 12414

Answers (4)

Vasu
Vasu

Reputation: 11

Refer this below link for clean master app kind of progress bar.Click here

Upvotes: 1

Ranjithkumar
Ranjithkumar

Reputation: 18416

finally I found the solution from here,

https://github.com/ylyc/circular_progress_bar.

It works fine. thanks to all..

Upvotes: 10

sreenisatish
sreenisatish

Reputation: 93

Write a custom view which would draw an Arc in the onDraw method.

Upvotes: 1

Joe3112
Joe3112

Reputation: 1008

I don't know about any library that will do this for you, but I would just use the Path class for the circular view and plain TextViews for the percentages.

Upvotes: 1

Related Questions