Dot Progress Bar

Additional

Language
Java
Version
N/A
Created
Aug 14, 2015
Updated
Oct 20, 2017 (Retired)
Owner
Predko Silvestr (silvestrpredko)
Contributors
Predko Silvestr (silvestrpredko)
silvestrpredkogloballogic
Dmytro Cheverda (dimacheverda)
3
Activity
Badge
Generate
Download
Source code

DotProgressBar

It`s a simple progress bar.

Example

Gradle

compile 'com.github.silvestrpredko:dot-progress-bar:1.1'

Usage

XML

<com.github.silvestrpredko.dotprogressbar.DotProgressBar
  android:id="@+id/dot_progress_bar"
  android:layout_width="match_parent"
  android:layout_height="50dp"
  custom:amount="5"
  custom:duration="@android:integer/config_mediumAnimTime"
  custom:endColor="@color/light_blue_A400"
  custom:startColor="@color/light_blue_A700"
  custom:animationDirection="left"/>

Code

dotProgressBar.setStartColor(startColor);
dotProgressBar.setEndColor(endColor);
dotProgressBar.setDotAmount(amount);
dotProgressBar.setAnimationTime(time);

// or you can use builder

new DotProgressBarBuilder(this)
                .setDotAmount(5)
                .setStartColor(Color.BLACK)
                .setAnimationDirection(DotProgressBar.LEFT_DIRECTION)
                .build();

License