fragment_sign_up.xml 752 B

12345678910111213141516171819202122232425262728
  1. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:bind="http://schemas.android.com/tools">
  4. <data>
  5. <import type="kr.co.zumo.app.lifeplus.view.model.SignUpItem"/>
  6. <variable
  7. name="model"
  8. type="kr.co.zumo.app.lifeplus.view.model.SignUpViewModel"/>
  9. </data>
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:orientation="vertical">
  14. <android.support.v7.widget.RecyclerView
  15. android:id="@+id/sign_up_list"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. app:items="@{model.getSignUpList()}"
  19. />
  20. </LinearLayout>
  21. </layout>