Newer
Older
DevRealm / app / src / main / res / layout / activity_main.xml
MatsumotoKeiju on 8 Nov 2017 768 bytes [add] Update adapter when db changes
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="jackall.devrealm.activity.MainActivity">

    <data>

        <variable
            name="mainViewModel"
            type="jackall.devrealm.viewmodel.MainViewModel" />
    </data>

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:setMainAdapter="@{mainViewModel.adapter}" />

    </android.support.constraint.ConstraintLayout>
</layout>