A dotted progress bar to for example show the page we're on. See GIF.
allprojects {
repositories {
...
maven { url 'https://www.jitpack.io' }
}
}
dependencies {
compile 'com.github.hayahyts:PrettyDottedProgressIndicator:1.0.0'
}
<com.hayahyts.dottedprogressindicator.DottedProgressBar
android:id="@+id/dotted_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="horizontal" />
DottedProgressBar dottedProgressBar = findViewById(R.id.dotted_progress_bar);
dottedProgressBar.setDotCount(TOTAL_SIZE);
dottedProgressBar.setCurrent(current, true);