Answers for "how to change color of circular progress bar in android"

0

how to change color of circular progress bar in android

<style name="RedAccent" parent="ThemeOverlay.AppCompat.Light">
    <item name="colorAccent">#F00</item>
</style>
Posted by: Guest on October-13-2020
0

how to change color of circular progress bar in android

<ProgressBar
            android:id="@+id/progress_bar"
            android:layout_width="32dp"
            android:layout_height="32dp"
            android:theme="@style/RedAccent"/>
Posted by: Guest on October-13-2020

Code answers related to "how to change color of circular progress bar in android"

Browse Popular Code Answers by Language