Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy-budiyev committed Dec 16, 2017
1 parent f96f76f commit fdbb62f
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,16 @@ public CircularProgressBar(@NonNull Context context, @Nullable AttributeSet attr
initialize(context, attrs, defStyleAttr, defStyleRes);
}

/**
* Indeterminate mode
*/
public boolean isIndeterminate() {
return mIndeterminate;
}

/**
* Indeterminate mode, disabled by default
*/
public void setIndeterminate(boolean indeterminate) {
mIndeterminate = indeterminate;
invalidate();
Expand Down

0 comments on commit fdbb62f

Please sign in to comment.