How to create Custom Horizontal progress bar

android, progress-bar

Solution

You do not need a custom progress bar. Use `style="@android:style/Widget.ProgressBar.Horizontal"` in your layout xml file. You will also need to use `ProgressBar.incrementProgressBy(int progress);`

See Android Developers|ProgressBar

Problem

Please help to create horizontal progress bar like this

Original source

Related problems