summaryrefslogtreecommitdiff
path: root/integration-tests
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2015-09-10 20:35:19 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-09-10 20:35:19 +0000
commit6aa433359e8bb8d153fa9b6b2237028ae38f4fd2 (patch)
treecbdbadeb912c9d4210cff26bde7bdea2ee307353 /integration-tests
parentdd41d0eb241157a3bf12ba03a67c8ab77aac5e0a (diff)
parent6a5a45a07b074230c07f78f271e417c7f844c1ec (diff)
downloaddata-binding-6aa433359e8bb8d153fa9b6b2237028ae38f4fd2.tar.gz
Merge "Enable fragments with IDs in data binding layouts." into studio-master-dev
Diffstat (limited to 'integration-tests')
-rw-r--r--integration-tests/TestApp/app/src/main/res/layout/fragment_main.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/integration-tests/TestApp/app/src/main/res/layout/fragment_main.xml b/integration-tests/TestApp/app/src/main/res/layout/fragment_main.xml
new file mode 100644
index 00000000..e2fbf7c0
--- /dev/null
+++ b/integration-tests/TestApp/app/src/main/res/layout/fragment_main.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android">
+ <fragment
+ android:id="@+id/fragment"
+ android:name="android.databinding.testapp.TestFragment"
+ android:layout_height="match_parent"
+ android:layout_width="match_parent"
+ />
+</layout> \ No newline at end of file