blob: a922fdab87ff0b90694b79f59c1f2f4ca993f428 [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
Tadashi G. Takaokaf10046b2013-04-18 15:11:33 +090021<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Tadashi G. Takaoka46878542013-02-14 16:46:39 +090022 android:layout_width="match_parent"
23 android:layout_height="match_parent"
Tadashi G. Takaokaf10046b2013-04-18 15:11:33 +090024 android:background="@color/setup_background"
25 android:paddingLeft="@dimen/setup_horizontal_padding"
26 android:paddingRight="@dimen/setup_horizontal_padding"
27 android:paddingTop="16dp"
28 android:paddingBottom="16dp">
29 <TextView
30 android:id="@+id/setup_title"
31 style="@style/setupTitleStyle"
32 android:layout_alignParentLeft="true"
33 android:layout_alignParentTop="true" />
34 <LinearLayout
35 android:id="@+id/setup_step_bullets"
Tadashi G. Takaoka46878542013-02-14 16:46:39 +090036 android:layout_width="match_parent"
37 android:layout_height="wrap_content"
Tadashi G. Takaokaf10046b2013-04-18 15:11:33 +090038 android:layout_below="@id/setup_title"
Tadashi G. Takaoka46878542013-02-14 16:46:39 +090039 android:paddingTop="16dp"
Tadashi G. Takaokaf10046b2013-04-18 15:11:33 +090040 android:orientation="horizontal">
Tadashi G. Takaoka46878542013-02-14 16:46:39 +090041 <TextView
Tadashi G. Takaokaf10046b2013-04-18 15:11:33 +090042 android:id="@+id/setup_step1_bullet"
43 style="@style/setupStepBulletStyle"
44 android:text="@string/setup_step1_bullet" />
45 <TextView
46 android:id="@+id/setup_step2_bullet"
47 style="@style/setupStepBulletStyle"
48 android:text="@string/setup_step2_bullet" />
49 <TextView
50 android:id="@+id/setup_step3_bullet"
51 style="@style/setupStepBulletStyle"
52 android:text="@string/setup_step3_bullet" />
53 </LinearLayout>
54 <com.android.inputmethod.latin.setup.SetupStepIndicatorView
55 android:id="@+id/setup_step_indicator"
56 android:layout_width="match_parent"
57 android:layout_height="24dp"
58 android:layout_below="@id/setup_step_bullets" />
59 <FrameLayout
60 android:layout_width="match_parent"
61 android:layout_height="wrap_content"
62 android:layout_below="@id/setup_step_indicator">
63 <include
64 android:id="@+id/setup_step1"
65 layout="@layout/setup_step" />
66 <include
67 android:id="@+id/setup_step2"
68 layout="@layout/setup_step" />
69 <include
70 android:id="@+id/setup_step3"
71 layout="@layout/setup_step" />
72 </FrameLayout>
73</RelativeLayout>