1

I want to know how I can create a progress bar that is like this: Sample Progress Bar

I already have drawn the progress of the progress bar in image file, how am i going to put it into the progress bar?

my progress bar XML file :

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
        <gradient
            android:angle="270"
            android:startColor="#ffffffff"
            android:endColor="#ffffffff"
            android:centerColor="#ffffffff"
            />
    </shape>
</item>

<item
    android:id="@android:id/progress" >
        <shape>

        </shape>

</item>

</layer-list>

Thank you!

Rickest Rick
  • 1,357
  • 13
  • 24
Ryan Lim
  • 176
  • 4
  • 14

1 Answers1

0

Please refer this answer :- MultiColorprogressBar

Or try this plugin SmoothProgressBar

Community
  • 1
  • 1
Nidhin Prathap
  • 556
  • 3
  • 15