Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yelinaung/1bf6393865eae0308d0f to your computer and use it in GitHub Desktop.
Save yelinaung/1bf6393865eae0308d0f to your computer and use it in GitHub Desktop.
MMAUG Simple Databinding - After binding activity_main.xml Layout
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="user"
type="org.mmaug.simpledatabinding.User"/>
</data>
<LinearLayout
android:padding="@dimen/activity_horizontal_margin"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
tools:text="John"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{user.name}"/>
<TextView
tools:text="28"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{user.age}"/>
<TextView
tools:text="Yangon, Myanmar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{user.address}"/>
</LinearLayout>
</layout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment