view_stub_contents.xml revision de38dd3ef0577d25b2d59863603abe5750d0c231
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3              android:orientation="vertical"
4              android:layout_width="match_parent"
5              android:layout_height="match_parent">
6    <variable name="firstName" type="String"/>
7    <variable name="lastName" type="String"/>
8    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
9              android:text="@{firstName}"
10              android:id="@+id/firstNameContents"/>
11    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
12              android:text="@{lastName}"
13              android:id="@+id/lastNameContents"/>
14</LinearLayout>
15