Guest User

Untitled

a guest
Jan 16th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <FrameLayout
  7. android:id="@+id/container"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent" />
  10. <RelativeLayout
  11. android:id="@+id/progressBarOverlay"
  12. android:visibility="gone"
  13. android:clickable="true"
  14. android:background="@color/overlay_grey"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent">
  17. <ProgressBar
  18. android:id="@+id/progressBar"
  19. android:indeterminate="true"
  20. android:layout_centerInParent="true"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content" />
  23. </RelativeLayout>
  24. </RelativeLayout>
Add Comment
Please, Sign In to add comment