interrogation_activity.xml revision ea515aeafa01de6f50c854ee381b972ef2478284
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            android:contentDescription="contentDescription"
74        />
75    </LinearLayout>
76
77    <LinearLayout
78        android:orientation="horizontal"
79        android:layout_width="fill_parent"
80        android:layout_height="fill_parent"
81        >
82        <Button
83            android:id="@+id/button7"
84            android:layout_width="160px"
85            android:layout_height="100px"
86            android:text="@string/button7"
87        />
88        <Button
89            android:id="@+id/button8"
90            android:layout_width="160px"
91            android:layout_height="100px"
92            android:text="@string/button8"
93        />
94        <Button
95            android:id="@+id/button9"
96            android:layout_width="160px"
97            android:layout_height="100px"
98            android:text="@string/button9"
99        />
100    </LinearLayout>
101
102</LinearLayout>
103