I\'m on a Lollipop device (MotoG 2014), I read about progress bar tinting, but this is not working...I get the default progress bar color. What am I missing here?
/**change your progress drawable asrequired****/ Drawable wrapDrawable = DrawableCompat.wrap(_progress.getIndeterminateDrawable()); DrawableCompat.setTint(wrapDrawable, ContextCompat.getColor(this, R.color.colorOrange)); _progress.setIndeterminateDrawable(DrawableCompat.unwrap(wrapDrawable));