How to Create a circular progressbar in Android which rotates on it?

I am trying to create a rounded progressbar. This is what I want to achieve There is a grey color background ring. On top of it, a blue color progressbar appears which moves in a circular path from 0 to 360 in 60 or whatever amount of seconds. Here is my example code. <ProgressBar android:id=”@+id/ProgressBar” … Read more

How to change ProgressBar’s progress indicator color in Android

I have set Horizontal ProgressBar. I would like to change the progress color to yellow. <ProgressBar android:id=”@+id/progressbar” android:layout_width=”80dip” android:layout_height=”20dip” android:focusable=”false” style=”?android:attr/progressBarStyleHorizontal” /> The problem is, the progress color is different in different devices. So, I want it to fix the progress color. 19 Answers 19