Skip to content

Instantly share code, notes, and snippets.

@PondThaitay
Created December 1, 2016 19:04
Show Gist options
  • Save PondThaitay/6c67106e2e0671b8a70cb9fdf6b264fc to your computer and use it in GitHub Desktop.
Save PondThaitay/6c67106e2e0671b8a70cb9fdf6b264fc to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable
name="data"
type="com.jedsada.databinding.model.UserModel" />
</data>
<RelativeLayout
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{data.firstName}" />
</RelativeLayout>
</layout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment