Created own color in color.xml <color name="colorProgressBar">#006600</color>
In styles.xml
<style name="ProgressBarde">
<item name="colorAccent">@color/colorProgressBar</item>
</style>
and added this to the main .xml activity
<ProgressBar
android:id="@+id/progressBar3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:indeterminate="true"
android:theme="@style/ProgressBarde" />
As you can the I choosed green color for my progress bar. It's even changed to my android studio editor. But when run it on my real android device by usb It's not changing. Where is my mistake?