summaryrefslogtreecommitdiff
path: root/integration-tests/TestApp/app/src/main/res/layout/name_mapping_test.xml
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/TestApp/app/src/main/res/layout/name_mapping_test.xml')
-rw-r--r--integration-tests/TestApp/app/src/main/res/layout/name_mapping_test.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/integration-tests/TestApp/app/src/main/res/layout/name_mapping_test.xml b/integration-tests/TestApp/app/src/main/res/layout/name_mapping_test.xml
new file mode 100644
index 00000000..1ed651b0
--- /dev/null
+++ b/integration-tests/TestApp/app/src/main/res/layout/name_mapping_test.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout>
+ <data>
+ <variable name="obj" type="android.databinding.testapp.vo.BasicObject"/>
+ </data>
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
+ android:id="@+id/textView"
+ android:enabled="@{obj.getThisNameDoesNotMatchAnythingElse2}"
+ android:focusable="@{obj.isThisNameDoesNotMatchAnythingElse1}"/>
+ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
+ android:id="@+id/textView2"
+ android:enabled="@{obj.thisNameDoesNotMatchAnythingElse2}"
+ android:focusable="@{obj.thisNameDoesNotMatchAnythingElse1}"/>
+ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
+ android:id="@+id/textView3"
+ android:enabled="@{obj.getThisNameDoesNotMatchAnythingElse2()}"
+ android:focusable="@{obj.isThisNameDoesNotMatchAnythingElse1()}"/>
+
+ </LinearLayout>
+</layout> \ No newline at end of file