blob: 9f37920be7b0db71eb7ef4ca78edafad706dae0b [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:orientation="vertical"
19 android:padding="10dip"
20 android:layout_width="fill_parent"
21 android:layout_height="wrap_content">
22
23 <ViewFlipper android:id="@+id/flipper"
24 android:layout_width="fill_parent"
25 android:layout_height="wrap_content"
26 android:flipInterval="2000"
27 android:layout_marginBottom="20dip" >
28 <TextView
29 android:layout_width="fill_parent"
30 android:layout_height="wrap_content"
31 android:gravity="center_horizontal"
32 android:textSize="26sp"
33 android:text="@string/animation_2_text_1"/>
34 <TextView
35 android:layout_width="fill_parent"
36 android:layout_height="wrap_content"
37 android:gravity="center_horizontal"
38 android:textSize="26sp"
39 android:text="@string/animation_2_text_2"/>
40 <TextView
41 android:layout_width="fill_parent"
42 android:layout_height="wrap_content"
43 android:gravity="center_horizontal"
44 android:textSize="26sp"
45 android:text="@string/animation_2_text_3"/>
46 <TextView
47 android:layout_width="fill_parent"
48 android:layout_height="wrap_content"
49 android:gravity="center_horizontal"
50 android:textSize="26sp"
51 android:text="@string/animation_2_text_4"/>
52 </ViewFlipper>
53
54 <TextView
55 android:layout_width="fill_parent"
56 android:layout_height="wrap_content"
57 android:layout_marginBottom="5dip"
58 android:text="@string/animation_2_instructions"
59 />
60
61 <Spinner android:id="@+id/spinner"
62 android:layout_width="fill_parent"
63 android:layout_height="wrap_content"
64 />
65
66</LinearLayout>
67