I have an image drawable. i rotating the image like a progress bar.
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0"
android:toDegrees="360" android:drawable="@drawable/spinner_white_48" />
i want to increase the rotation speed? for that, What attribute i have to use?
Setting duration and/or repeat count did not help me with an indeterminate ProgressBar animation. I had to increase the toDegrees to have it make additional loops:
According to this link:
In addition, you can just use indeterminateDuration for the ProgressBar.
add in code to progress.xml
Set the duration and repeatCount that you want the animation to run.