on_boarding_last.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@drawable/bgimg_step_05"
  8. android:gravity="bottom"
  9. android:orientation="vertical">
  10. <ImageView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_alignParentStart="true"
  14. android:layout_alignParentBottom="true"
  15. android:layout_marginStart="35dp"
  16. android:layout_marginBottom="17dp"
  17. app:srcCompat="@drawable/ic_bi_step_5_wh"/>
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:layout_alignParentStart="true"
  22. android:layout_alignParentBottom="true"
  23. android:layout_marginStart="35dp"
  24. android:layout_marginBottom="30dp"
  25. android:orientation="vertical">
  26. <TextView
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent"
  29. android:layout_alignParentStart="true"
  30. android:layout_alignParentTop="true"
  31. android:layout_marginBottom="13dp"
  32. android:text="@string/tutorial_title_last"
  33. android:textColor="@color/CFFFFFF"
  34. android:textSize="30dp"/>
  35. <TextView
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent"
  38. android:lineSpacingExtra="5.8sp"
  39. android:text="@string/tutorial_title_last_message"
  40. android:textColor="@color/CFFFFFF"
  41. android:textSize="17dp"
  42. />
  43. </LinearLayout>
  44. <Button
  45. android:id="@+id/button_start_main"
  46. style="@style/WhiteButton"
  47. android:layout_width="113dp"
  48. android:layout_height="38dp"
  49. android:layout_marginStart="35dp"
  50. android:layout_marginBottom="39dp"
  51. android:text="시작하기"
  52. android:textColor="@color/C000000"/>
  53. </LinearLayout>