summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/utp/kotlinDslApp/src/main/res/layout/activity_layout.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build-system/integration-test/test-projects/utp/kotlinDslApp/src/main/res/layout/activity_layout.xml')
-rw-r--r--build-system/integration-test/test-projects/utp/kotlinDslApp/src/main/res/layout/activity_layout.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/build-system/integration-test/test-projects/utp/kotlinDslApp/src/main/res/layout/activity_layout.xml b/build-system/integration-test/test-projects/utp/kotlinDslApp/src/main/res/layout/activity_layout.xml
new file mode 100644
index 0000000000..16a7fa59ea
--- /dev/null
+++ b/build-system/integration-test/test-projects/utp/kotlinDslApp/src/main/res/layout/activity_layout.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context="com.example.android.kotlin.MainActivity"
+ tools:showIn="@layout/activity_">
+
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:text="Some Text"
+ android:id="@+id/someText"
+ android:layout_alignParentTop="true"
+ android:layout_centerHorizontal="true" />
+
+ <Button
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Click"
+ android:id="@+id/click"
+ android:layout_below="@+id/someText"
+ android:layout_centerHorizontal="true" />
+</RelativeLayout>