I have a progressbar with the following style: style=\"?android:attr/android:progressBarStyleSmall\"
style=\"?android:attr/android:progressBarStyleSmall\"
Sadly the bar is nearly white and in my case displ
public static void setColorOfProgressBar(ProgressBar mProgressBar, int mColor){ mProgressBar.getIndeterminateDrawable().setColorFilter(mColor, android.graphics.PorterDuff.Mode.MULTIPLY); }