I am using a circular ProgressBar
in my Activty.My Problem is this it is not visible properly on my page because my page\'s BG color is same as ProgressBar .So
you also can change only the attribute
android:indeterminateDrawable="@drawable/yourxmlfile"
and keep this style
style="@android:style/Widget.ProgressBar.Small"
here is how you can do it by java code.
progressBar.getProgressDrawable().setColorFilter(ContextCompat.getColor(getActivity(),R.color.product_status_color), PorterDuff.Mode.MULTIPLY)