aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/sample2-expected-gridLayout2.xml
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/sample2-expected-gridLayout2.xml')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/sample2-expected-gridLayout2.xml67
1 files changed, 67 insertions, 0 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/sample2-expected-gridLayout2.xml b/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/sample2-expected-gridLayout2.xml
new file mode 100644
index 000000000..8b9056216
--- /dev/null
+++ b/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/sample2-expected-gridLayout2.xml
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="utf-8"?>
+<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/GridLayout1"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:columnCount="6"
+ android:orientation="horizontal" >
+
+ <Button
+ android:id="@+id/button1"
+ android:layout_columnSpan="2"
+ android:layout_gravity="left"
+ android:text="Button" >
+ </Button>
+
+ <Button
+ android:id="@+id/button2"
+ android:layout_alignParentLeft="true"
+ android:layout_column="0"
+ android:layout_columnSpan="2"
+ android:layout_gravity="left"
+ android:text="Button" >
+ </Button>
+
+ <Button
+ android:id="@+id/button3"
+ android:layout_below="@+id/button2"
+ android:layout_gravity="left"
+ android:layout_row="2"
+ android:layout_toRightOf="@+id/button2"
+ android:text="Button" >
+ </Button>
+
+ <Button
+ android:id="@+id/button4"
+ android:layout_below="@+id/button3"
+ android:layout_gravity="left"
+ android:layout_row="3"
+ android:layout_toRightOf="@+id/button3"
+ android:text="Button" >
+ </Button>
+
+ <CheckBox
+ android:id="@+id/checkBox1"
+ android:layout_below="@+id/button4"
+ android:layout_column="1"
+ android:layout_columnSpan="2"
+ android:layout_gravity="left"
+ android:layout_toLeftOf="@+id/button4"
+ android:text="CheckBox" >
+ </CheckBox>
+
+ <Button
+ android:id="@+id/button5"
+ android:layout_alignParentRight="true"
+ android:layout_column="4"
+ android:layout_gravity="left"
+ android:layout_row="1"
+ android:text="Button" >
+ </Button>
+
+ <Space
+ android:layout_column="5"
+ android:layout_gravity="fill_vertical"
+ android:layout_row="5" />
+
+</GridLayout> \ No newline at end of file