| 12345678910111213141516171819202122232425262728 |
- <layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:bind="http://schemas.android.com/tools">
- <data>
- <import type="kr.co.zumo.app.lifeplus.view.model.SignUpItem"/>
- <variable
- name="model"
- type="kr.co.zumo.app.lifeplus.view.model.SignUpViewModel"/>
- </data>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <android.support.v7.widget.RecyclerView
- android:id="@+id/sign_up_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- app:items="@{model.getSignUpList()}"
- />
- </LinearLayout>
- </layout>
|