Guest User

Untitled

a guest
Feb 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="ring"
  4. android:innerRadiusRatio="2.5"
  5. android:thickness="4dp"
  6. android:useLevel="false">
  7. <gradient
  8. android:type="sweep"
  9. android:startColor="@android:color/white"
  10. android:centerColor="@android:color/white"
  11. android:endColor="@android:color/transparent"
  12. />
  13. </shape>
  14.  
  15. <?xml version="1.0" encoding="utf-8"?>
  16. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:orientation="vertical">
  20.  
  21. <ImageView
  22. android:id="@+id/correct_icon"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:contentDescription="@string/correct_icon"
  26. android:padding="@dimen/padding_large"
  27. android:visibility="gone" />
  28.  
  29. <ProgressBar
  30. android:id="@+id/progress_bar"
  31. android:layout_width="match_parent"
  32. android:layout_height="match_parent"
  33. android:layout_marginBottom="8dp"
  34. android:padding="@dimen/padding_large"
  35. android:progressDrawable="@drawable/progressbar_circle"
  36. android:visibility="gone" />
  37.  
  38. </RelativeLayout>
Add Comment
Please, Sign In to add comment