progress_bar_states.xml 978 B

1234567891011121314151617181920212223242526272829303132
  1. <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
  2. <item android:id="@android:id/background">
  3. <shape>
  4. <gradient
  5. android:centerColor="#3399FF"
  6. android:endColor="#33FFFF"
  7. android:startColor="#3366FF" />
  8. </shape>
  9. </item>
  10. <item android:id="@android:id/secondaryProgress">
  11. <clip>
  12. <shape>
  13. <gradient
  14. android:centerColor="#234"
  15. android:endColor="#a24"
  16. android:startColor="#234" />
  17. </shape>
  18. </clip>
  19. </item>
  20. <item android:id="@android:id/progress">
  21. <clip>
  22. <shape>
  23. <gradient
  24. android:centerColor="#666666"
  25. android:endColor="#666666"
  26. android:startColor="#666666" />
  27. </shape>
  28. </clip>
  29. </item>
  30. </layer-list>