Merge branch 'master' into new-master

This commit is contained in:
Denis Karmyshakov 2018-08-22 18:06:44 +03:00
commit d4f24f8c37
1 changed files with 9 additions and 0 deletions

View File

@ -116,4 +116,13 @@ public class MaterialLoadingBar extends AppCompatImageView {
progressDrawable.setColor(colorInt);
}
/**
* Set color of loader.
*
* @param colorInt Color of loader to be set.
*/
public void setColor(@ColorInt final int colorInt) {
progressDrawable.setColor(colorInt);
}
}