interrogation_activity.xml revision 8bd69610aafc6995126965d1d23b771fe02a9084
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4** Copyright 2011, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10**     http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20    android:id="@+id/root"
21    android:orientation="vertical"
22    android:layout_width="fill_parent"
23    android:layout_height="wrap_content"
24    >
25
26    <LinearLayout
27        android:orientation="horizontal"
28        android:layout_width="fill_parent"
29        android:layout_height="fill_parent"
30        >
31        <Button
32            android:id="@+id/button1"
33            android:layout_width="160px"
34            android:layout_height="100px"
35            android:text="@string/button1"
36        />
37        <Button
38            android:id="@+id/button2"
39            android:layout_width="160px"
40            android:layout_height="100px"
41            android:text="@string/button2"
42        />
43        <Button
44            android:id="@+id/button3"
45            android:layout_width="160px"
46            android:layout_height="100px"
47            android:text="@string/button3"
48        />
49    </LinearLayout>
50
51    <LinearLayout
52        android:orientation="horizontal"
53        android:layout_width="fill_parent"
54        android:layout_height="fill_parent"
55        >
56        <Button
57            android:id="@+id/button4"
58            android:layout_width="160px"
59            android:layout_height="100px"
60            android:text="@string/button4"
61        />
62        <Button
63            android:id="@+id/button5"
64            android:layout_width="160px"
65            android:layout_height="100px"
66            android:text="@string/button5"
67        />
68        <Button
69            android:id="@+id/button6"
70            android:layout_width="160px"
71            android:layout_height="100px"
72            android:text="@string/button6"
73        />
74    </LinearLayout>
75
76    <LinearLayout
77        android:orientation="horizontal"
78        android:layout_width="fill_parent"
79        android:layout_height="fill_parent"
80        >
81        <Button
82            android:id="@+id/button7"
83            android:layout_width="160px"
84            android:layout_height="100px"
85            android:text="@string/button7"
86        />
87        <Button
88            android:id="@+id/button8"
89            android:layout_width="160px"
90            android:layout_height="100px"
91            android:text="@string/button8"
92        />
93        <Button
94            android:id="@+id/button9"
95            android:layout_width="160px"
96            android:layout_height="100px"
97            android:text="@string/button9"
98        />
99    </LinearLayout>
100
101</LinearLayout>
102