StepProgressBar
StepProgressBar is progressBar for easy display steps
You can display your step progressbar
For example, You can show customer's current trade step.
Setup
Gradle
dependencies {
implementation 'kr.co.prnd:stepprogressbar:x.x.x'
//implementation 'kr.co.prnd:stepprogressbar:1.0.0-alpha1'
}
If you think this library is useful, please press star button at upside.
How to use
<kr.co.prnd.StepProgressBar
android:layout_width="match_parent"
android:layout_height="8dp"
android:layout_marginTop="24dp"
app:max="10"
app:step="6"
app:stepDoneColor="#ff0000"
app:stepMargin="8dp"
app:stepUndoneColor="#dedede" />
Customize
You can change your StepProgressBar
attribute programmatically
setMax()
setStep()
setStepDoneColor()
setStepUndoneColor()
setStepMargin()