Tadashi G. Takaoka | 4687854 | 2013-02-14 16:46:39 +0900 | [diff] [blame] | 1 | <?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. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 21 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
Tadashi G. Takaoka | 4687854 | 2013-02-14 16:46:39 +0900 | [diff] [blame] | 22 | android:layout_width="match_parent" |
| 23 | android:layout_height="match_parent" |
Tadashi G. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 24 | 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. Takaoka | 4687854 | 2013-02-14 16:46:39 +0900 | [diff] [blame] | 36 | android:layout_width="match_parent" |
| 37 | android:layout_height="wrap_content" |
Tadashi G. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 38 | android:layout_below="@id/setup_title" |
Tadashi G. Takaoka | 4687854 | 2013-02-14 16:46:39 +0900 | [diff] [blame] | 39 | android:paddingTop="16dp" |
Tadashi G. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 40 | android:orientation="horizontal"> |
Tadashi G. Takaoka | 4687854 | 2013-02-14 16:46:39 +0900 | [diff] [blame] | 41 | <TextView |
Tadashi G. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 42 | 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 |
Tadashi G. Takaoka | 192743a | 2013-04-18 15:11:33 +0900 | [diff] [blame^] | 60 | android:id="@+id/setup_steps_pane" |
Tadashi G. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 61 | android:layout_width="match_parent" |
| 62 | android:layout_height="wrap_content" |
| 63 | android:layout_below="@id/setup_step_indicator"> |
| 64 | <include |
| 65 | android:id="@+id/setup_step1" |
| 66 | layout="@layout/setup_step" /> |
| 67 | <include |
| 68 | android:id="@+id/setup_step2" |
| 69 | layout="@layout/setup_step" /> |
| 70 | <include |
| 71 | android:id="@+id/setup_step3" |
| 72 | layout="@layout/setup_step" /> |
| 73 | </FrameLayout> |
Tadashi G. Takaoka | 192743a | 2013-04-18 15:11:33 +0900 | [diff] [blame^] | 74 | <TextView |
| 75 | android:id="@+id/setup_finish" |
| 76 | android:text="@string/setup_finish_action" |
| 77 | style="@style/setupStepActionLabelStyle" |
| 78 | android:layout_below="@id/setup_steps_pane" |
| 79 | android:layout_marginTop="2dp" /> |
Tadashi G. Takaoka | f10046b | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 80 | </RelativeLayout> |