fragment_test.xml revision d6527ee28cc3aa05818799af8def9593346f91bc
1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android">
3    <data>
4        <variable name="a" type="String"/>
5        <variable name="b" type="String"/>
6    </data>
7    <FrameLayout
8            android:id="@+id/container"
9            android:layout_width="match_parent"
10            android:layout_height="match_parent">
11        <fragment
12                android:id="@+id/fragment"
13                android:name="android.databinding.testapp.TestFragment"
14                android:layout_height="match_parent"
15                android:layout_width="match_parent"
16                />
17    </FrameLayout>
18</layout>