I want to create a Circluar Determinate ProgressBar, the kind which shows the Progress in the center of the Bar. Is there any default way to create this, or will i have to create my own custom one.
I want to create a Circluar Determinate ProgressBar, the kind which shows the Progress
Share
First add a progress_circle.xml to your res/drawable directory like this:
I Googled image searched both “progress_particle.png” and “progress_circular_background.png” (with quotes) since the android default drawables for those were missing. You’ll probably want to customize those but they’ll do to get you started.
Then in your xml layout:
My max is 60, since I’m using it for a seconds timer, but you might have something different.
The trick is that you need to use style=”?android:attr/progressBarStyleHorizontal” even though it’s a circular progress.