Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:bind="http://schemas.android.com/apk/res-auto">
  4. <data>
  5. <variable name="user" type="com.example.User"/>
  6. </data>
  7. <LinearLayout
  8. android:orientation="vertical"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent">
  11. <include layout="@layout/name"
  12. bind:user="@{user}"/>
  13. <include layout="@layout/contact"
  14. bind:user="@{user}"/>
  15. </LinearLayout>
  16. </layout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement