Advertisement
Guest User

Slide 1

a guest
Nov 8th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/bg_screen1">
  6.  
  7. <LinearLayout
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_centerInParent="true"
  11. android:gravity="center_horizontal"
  12. android:orientation="vertical">
  13.  
  14. <ImageView
  15. android:layout_width="@dimen/img_width"
  16. android:layout_height="@dimen/img_height"
  17. android:src="@drawable/lanternfly" />
  18.  
  19. <TextView
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:fontFamily="@font/basic"
  23. android:text="@string/title_slide1"
  24. android:textAlignment="center"
  25. android:textColor="@android:color/white"
  26. android:textSize="@dimen/slide_title"
  27. android:textStyle="bold" />
  28.  
  29. <TextView
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_marginTop="20dp"
  33. android:fontFamily="@font/basic"
  34. android:paddingLeft="@dimen/desc_padding"
  35. android:paddingRight="@dimen/desc_padding"
  36. android:text="@string/desc_slide1"
  37. android:textAlignment="center"
  38. android:textColor="@android:color/white"
  39. android:textSize="@dimen/slide_desc" />
  40.  
  41. </LinearLayout>
  42.  
  43. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement