OSDN Git Service

Skeleton for tic-tac-toe sample.
[android-x86/development.git] / samples / TicTacToeMain / res / layout / main.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3  * Copyright (C) 2010 The Android Open Source Project
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16 -->
17
18 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19     android:orientation="vertical"
20     android:layout_width="fill_parent"
21     android:layout_height="fill_parent"
22     android:gravity="center_horizontal"
23     >
24
25     <TextView
26         android:layout_width="fill_parent"
27         android:layout_height="wrap_content"
28         android:gravity="center_horizontal"
29         android:layout_marginTop="20dip"
30         android:layout_marginBottom="5dip"
31         android:text="@string/welcome"
32         />
33     <TextView
34         android:layout_width="fill_parent"
35         android:layout_height="wrap_content"
36         android:gravity="center_horizontal"
37         android:layout_marginBottom="5dip"
38         android:text="@string/explain2"
39         />
40     <TextView
41         android:layout_width="fill_parent"
42         android:layout_height="wrap_content"
43         android:gravity="center_horizontal"
44         android:layout_marginBottom="20dip"
45         android:text="@string/explain1"
46         />
47
48     <Button
49         android:id="@+id/start_player"
50         android:text="@string/start_player"
51         android:layout_width="wrap_content"
52         android:layout_height="wrap_content"
53         />
54     <Button
55         android:id="@+id/start_comp"
56         android:text="@string/start_comp"
57         android:layout_width="wrap_content"
58         android:layout_height="wrap_content"
59         android:layout_marginBottom="10dip"
60         />
61
62     <ImageView
63         android:id="@+id/ImageView01"
64         android:layout_width="wrap_content"
65         android:layout_height="wrap_content"
66         android:src="@drawable/icon"
67         />
68
69 </LinearLayout>