3

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

Goku
  • 8,341
  • 7
  • 43
  • 73
Ahsan Malik
  • 369
  • 2
  • 3
  • 13
  • go through the link [change progress bars](http://stackoverflow.com/questions/2020882/how-to-change-progress-bars-progress-color-in-android) – Nazim ch Mar 09 '17 at 11:43

1 Answers1

1

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

AskNilesh
  • 63,753
  • 16
  • 113
  • 150