aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/wrong_namespace3.xml
diff options
context:
space:
mode:
Diffstat (limited to 'lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/wrong_namespace3.xml')
-rw-r--r--lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/wrong_namespace3.xml24
1 files changed, 0 insertions, 24 deletions
diff --git a/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/wrong_namespace3.xml b/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/wrong_namespace3.xml
deleted file mode 100644
index 02252b4..0000000
--- a/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/wrong_namespace3.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:a="http://schemas.android.com/apk/res/androi"
- a:layout_width="match_parent"
- a:layout_height="match_parent"
- a:orientation="vertical" >
-
- <include
- a:layout_width="wrap_content"
- a:layout_height="wrap_content"
- layout="@layout/layout2" />
-
- <Button
- a:id="@+id/button1"
- a:layout_width="wrap_content"
- a:layout_height="wrap_content"
- a:text="Button" />
-
- <Button
- a:id="@+id/button2"
- a:layout_width="wrap_content"
- a:layout_height="wrap_content"
- a:text="Button" />
-
-</LinearLayout>