Android: Modify the color of the native Loading control ProgressBar

<ProgressBar
    android:id="@+id/progress"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:indeterminateTint="@color/blue" />
The indeterminateTint attribute declares the color of the circle.

Guess you like

Origin blog.csdn.net/qq_35584878/article/details/132826261