blob: acbbe30b344518672f2bec0bee29090b7a5abb0f [file] [log] [blame]
Tadashi G. Takaoka46878542013-02-14 16:46:39 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2013, The Android Open Source Project
6**
7** Licensed under the Apache License, Version 2.0 (the "License");
8** you may not use this file except in compliance with the License.
9** You may obtain a copy of the License at
10**
11** http://www.apache.org/licenses/LICENSE-2.0
12**
13** Unless required by applicable law or agreed to in writing, software
14** distributed under the License is distributed on an "AS IS" BASIS,
15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16** See the License for the specific language governing permissions and
17** limitations under the License.
18*/
19-->
20
21<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
22 android:layout_width="match_parent"
23 android:layout_height="match_parent"
24 android:fillViewport="true">
25 <RelativeLayout
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:background="@color/setup_background"
29 android:paddingLeft="@dimen/setup_horizontal_padding"
30 android:paddingRight="@dimen/setup_horizontal_padding"
31 android:paddingTop="16dp"
32 android:paddingBottom="16dp">
33 <TextView
34 android:id="@+id/setup_title"
35 style="@style/setupTitleStyle"
36 android:layout_width="match_parent"
37 android:layout_height="wrap_content"
38 android:layout_alignParentLeft="true"
39 android:layout_alignParentStart="true"
40 android:layout_alignParentTop="true" />
41 <LinearLayout
42 android:id="@+id/setup_step_bullets"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:layout_below="@id/setup_title"
46 android:paddingTop="16dp"
47 android:orientation="horizontal">
48 <TextView
49 style="@style/setupStepBulletStyle"
50 android:text="@string/setup_step1_bullet" />
51 <TextView
52 style="@style/setupStepBulletStyle"
53 android:text="@string/setup_step2_bullet" />
54 <TextView
55 style="@style/setupStepBulletStyle"
56 android:text="@string/setup_step3_bullet" />
57 </LinearLayout>
58 <com.android.inputmethod.latin.setup.SetupStepIndicatorView
59 android:id="@+id/setup_step_indicator"
60 android:layout_width="match_parent"
61 android:layout_height="24dp"
62 android:layout_below="@id/setup_step_bullets" />
63 <FrameLayout
64 android:layout_width="match_parent"
65 android:layout_height="wrap_content"
66 android:layout_below="@id/setup_step_indicator">
67 <include
68 android:id="@+id/setup_step1"
69 layout="@layout/setup_step" />
70 <include
71 android:id="@+id/setup_step2"
72 layout="@layout/setup_step" />
73 <include
74 android:id="@+id/setup_step3"
75 layout="@layout/setup_step" />
76 </FrameLayout>
77 </RelativeLayout>
78</ScrollView>