Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <LinearLayout
  2. android:id="@id/android:empty"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:gravity="center" >
  6.  
  7. <ProgressBar
  8. android:id="@+id/workingProgressBar"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. android:layout_gravity="center"
  12. android:indeterminateDrawable="@drawable/startup_anim"
  13. android:indeterminateOnly="true" />
  14. </LinearLayout>
  15.  
  16. <animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
  17.  
  18. <item
  19. android:drawable="@drawable/animation4"
  20. android:duration="100"/>
  21. <item
  22. android:drawable="@drawable/animation3"
  23. android:duration="100"/>
  24. <item
  25. android:drawable="@drawable/animation2"
  26. android:duration="100"/>
  27. <item
  28. android:drawable="@drawable/animation1"
  29. android:duration="100"/>
  30. <item
  31. android:drawable="@drawable/animation0"
  32. android:duration="100"/>
  33.  
  34. </animation-list>
  35.  
  36. <RelativeLayout
  37. android:id="@id/android:empty"
  38. android:layout_width="match_parent"
  39. android:layout_height="match_parent" >
  40.  
  41. <ProgressBar
  42. android:id="@+id/workingProgressBar"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_centerInParent="true"
  46. android:indeterminateDrawable="@drawable/startup_anim"
  47. android:indeterminateOnly="true" />
  48.  
  49. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement