更新时间:2016年11月30日15时43分 来源:传智播客Android培训学院 浏览次数:
| 1 2 3 4 5 6 | android {....dataBinding {enabled =true}} | 
| 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 | <?xmlversion="1.0"encoding="utf-8"?><layoutxmlns:android="http://schemas.android.com/apk/res/android">    <data>        <variablename="user"type="cn.itcast.mvvmdemo.User"/>    </data>    <LinearLayout        android:orientation="vertical"        android:layout_width="match_parent"        android:layout_height="match_parent">        <TextViewandroid:layout_width="wrap_content"                  android:layout_height="wrap_content"                  android:text="@{user.firstname}"/>        <TextViewandroid:layout_width="wrap_content"                  android:layout_height="wrap_content"                  android:text="@{user.lastname}"/>    </LinearLayout></layout> |