spin_animation.xml 583 B

123456789101112
  1. <!-- Animation frames are wheel0.png through wheel5.png
  2. files inside the res/drawable/ folder -->
  3. <animation-list
  4. xmlns:android="http://schemas.android.com/apk/res/android"
  5. android:id="@+id/selected"
  6. android:oneshot="false">
  7. <item android:drawable="@drawable/ic_green_circle" android:duration="100" />
  8. <item android:drawable="@drawable/ic_blue_circle" android:duration="100" />
  9. <item android:drawable="@drawable/ic_pink_circle" android:duration="100" />
  10. <item android:drawable="@drawable/ic_yellow_circle" android:duration="100" />
  11. </animation-list>