blob: 0e5be0c0b4cdffc3be6804f9a12734d0964677dd [file] [log] [blame]
Philip Milne3f8956d2011-05-13 17:29:00 +01001<!-- Copyright (C) 2010 The Android Open Source Project
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14-->
15
16<GridLayout
17 xmlns:android="http://schemas.android.com/apk/res/android"
Philip Milne3f8956d2011-05-13 17:29:00 +010018 android:layout_width="match_parent"
Philip Milnea1f7b102011-06-23 11:10:13 -070019 android:layout_height="match_parent">
Philip Milne1557fd72012-04-04 23:41:34 -070020
Philip Milnea1f7b102011-06-23 11:10:13 -070021 <Space
22 android:layout_row="0"
23 android:layout_column="0"
24 android:layout_width="109dip"
25 android:layout_height="108dip"/>
Philip Milne3f8956d2011-05-13 17:29:00 +010026
Philip Milnea1f7b102011-06-23 11:10:13 -070027 <Button
28 android:text="Button 1"
29 android:layout_row="0"
30 android:layout_column="1"
31 />
Philip Milne3f8956d2011-05-13 17:29:00 +010032
Philip Milnea1f7b102011-06-23 11:10:13 -070033 <Button
34 android:text="Button 2"
35 android:layout_row="1"
36 android:layout_column="1"
37 />
Philip Milne3f8956d2011-05-13 17:29:00 +010038
39</GridLayout>
40
41