kindly help me i want to change color of my progress bar i am using
mProgress.setProgressTintList(ColorStateList.valueOf(Color.parseColor("#FF5201")));
but this is not working below 21 level kindly send me a solution thanks
kindly help me i want to change color of my progress bar i am using
mProgress.setProgressTintList(ColorStateList.valueOf(Color.parseColor("#FF5201")));
but this is not working below 21 level kindly send me a solution thanks
try this
progressBar.getIndeterminateDrawable().setColorFilter(
getResources().getColor(Your_Color),
android.graphics.PorterDuff.Mode.SRC_IN);
and replace Your_Color with the desired color like: R.color.your_color_code i hope this is work for you