summaryrefslogtreecommitdiff
path: root/android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2014-09-10 17:25:48 -0700
committerTor Norbye <tnorbye@google.com>2014-09-12 12:40:30 -0700
commitea634b4902763688be74897bdba643cb44ea682d (patch)
tree932edc36c5a38205a73fc5bc9fc5fe1feada5f76 /android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml
parente9d32976820f5a7e46c62e46b789a146c5fb5517 (diff)
downloadidea-ea634b4902763688be74897bdba643cb44ea682d.tar.gz
Warn when a rendered custom view has been modified after build
Change-Id: I43f882610d26b26309c09bb9a79c4ef16a7b610a
Diffstat (limited to 'android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml')
-rw-r--r--android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml b/android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml
new file mode 100644
index 00000000000..4aeb979e971
--- /dev/null
+++ b/android/testData/guiTests/LayoutTest/app/src/main/res/layout/layout1.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <com.android.tools.tests.layout.MyButton
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:text="@string/test" />
+
+</LinearLayout> \ No newline at end of file