Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".SplashScreen"
  8. android:id="@+id/splash_screen"
  9. android:background="@color/bgsplash">
  10.  
  11. <LinearLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:orientation="vertical"
  15. android:layout_gravity="center_vertical">
  16.  
  17. <ImageView
  18. android:id="@+id/logo_bsp"
  19. android:layout_width="wrap_content"
  20. android:layout_height="150dp"
  21. android:layout_centerHorizontal="true"
  22. android:layout_marginBottom="50dp"
  23. android:layout_gravity="center|center_horizontal|center_vertical"
  24. android:src="@drawable/ic_launcher" />
  25.  
  26. <ProgressBar
  27. android:id="@+id/progresBar1"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_ParentBottom="true"
  31. android:layout_centerHorizontal="true"
  32. android:layout_gravity="center_horizontal"
  33.  
  34. android:layout_marginBottom="80dp" />
  35. </LinearLayout>
  36.  
  37. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement