How to change the colour and pattern of the circualar progress in Android?
I use the below code to generate the circular progress. But I don't know how to change the pattern and color of it. <rotate xmlns:android="http://schemas.android.com/apk/res/android" android:pivotX="10%" android:pivotY="10%" android:fromDegrees="0" android:toDegrees="360"> <shape android:shape="ring" android:innerRadiusRatio="0" android:thicknessRatio="6" android:useLevel="false"> <size android:width="10dip" android:height="10dip" /> <gradient android:type="linear" android:useLevel="false" android:startColor="#000000" android:endColor="#000000" android:angle="0" /> </shape> </rotate> It