Advertisement
wildanfuady

Untitled

Feb 19th, 2020
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 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: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=".SplashScreenActivity"
  8. android:background="@color/colorPrimary">
  9.  
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:orientation="vertical"
  14. android:gravity="center"
  15. android:layout_centerInParent="true">
  16.  
  17. <ImageView
  18. android:layout_width="80dp"
  19. android:layout_height="80dp"
  20. android:src="@drawable/ic_school"
  21. android:id="@+id/logo"
  22. android:layout_marginBottom="17dp"/>
  23.  
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:id="@+id/app_label"
  28. android:text="SEKOLAHKU"
  29. android:textSize="35sp"
  30. android:textStyle="bold"
  31. android:textColor="@color/colorAccent"/>
  32.  
  33. </LinearLayout>
  34.  
  35. <ProgressBar
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:id="@+id/progressBar"
  39. android:layout_alignParentBottom="true"
  40. style="?android:progressBarStyleHorizontal"/>
  41.  
  42. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement