signup_benefit_view.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <data>
  7. <import type="kr.co.zumo.app.lifeplus.view.model.SignUpModel"/>
  8. </data>
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:orientation="horizontal">
  13. <LinearLayout
  14. android:layout_width="wrap_content"
  15. android:orientation="vertical"
  16. android:layout_height="wrap_content">
  17. <ImageView
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center"
  21. android:src="@mipmap/ic_launcher"/>
  22. <TextView
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content"
  25. android:textAlignment="center"
  26. android:text="text1"/>
  27. <TextView
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:textAlignment="center"
  31. android:text="text2"/>
  32. <TextView
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:textAlignment="center"
  36. android:text="text3"/>
  37. </LinearLayout>
  38. </LinearLayout>
  39. </layout>