Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2013 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 | <resources xmlns:android="http://schemas.android.com/apk/res/android"> |
| 18 | <style name="setupTitleStyleCommon"> |
| 19 | <item name="android:textColor">@color/setup_text_dark</item> |
| 20 | <item name="android:textSize">@dimen/setup_title_text_size</item> |
| 21 | <item name="android:layout_width">match_parent</item> |
| 22 | <item name="android:layout_height">wrap_content</item> |
| 23 | </style> |
Tadashi G. Takaoka | fcefabf | 2013-04-18 17:19:40 +0900 | [diff] [blame] | 24 | <style name="setupWelcomeDescritpionStyle" parent="setupTitleStyle"> |
| 25 | <item name="android:textSize">@dimen/setup_welcome_description_text_size</item> |
| 26 | </style> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 27 | <style name="setupStepIndicatorStyle"> |
| 28 | <item name="android:layout_width">match_parent</item> |
Tadashi G. Takaoka | 81b4661 | 2013-04-24 11:34:30 +0900 | [diff] [blame] | 29 | <item name="android:layout_height">@dimen/setup_step_triangle_indicator_height</item> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 30 | </style> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 31 | <style name="setupStepBulletStyle"> |
| 32 | <item name="android:textColor">@color/setup_text_dark</item> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 33 | <item name="android:textSize">@dimen/setup_step_bullet_text_size</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 34 | <item name="android:layout_width">0dp</item> |
| 35 | <item name="android:layout_weight">1.0</item> |
| 36 | <item name="android:layout_height">wrap_content</item> |
| 37 | <item name="android:gravity">center_horizontal</item> |
| 38 | </style> |
| 39 | <style name="setupStepBaseStyle"> |
| 40 | <item name="android:textColor">@color/setup_text_dark</item> |
| 41 | <item name="android:background">@color/setup_step_background</item> |
| 42 | <item name="android:layout_width">match_parent</item> |
| 43 | <item name="android:layout_height">wrap_content</item> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 44 | <item name="android:paddingLeft">@dimen/setup_step_horizontal_padding</item> |
| 45 | <item name="android:paddingRight">@dimen/setup_step_horizontal_padding</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 46 | </style> |
| 47 | <style name="setupStepTitleStyle" parent="setupStepBaseStyle"> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 48 | <item name="android:textSize">@dimen/setup_step_title_text_size</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 49 | </style> |
| 50 | <style name="setupStepInstructionStyle" parent="setupStepBaseStyle"> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 51 | <item name="android:textSize">@dimen/setup_step_instruction_text_size</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 52 | </style> |
Tadashi G. Takaoka | fcefabf | 2013-04-18 17:19:40 +0900 | [diff] [blame] | 53 | <style name="setupStepStartIndicatorStyle"> |
Tadashi G. Takaoka | 81b4661 | 2013-04-24 11:34:30 +0900 | [diff] [blame] | 54 | <!-- The triangle indicator here is placed sideways. --> |
| 55 | <item name="android:layout_width">@dimen/setup_step_triangle_indicator_height</item> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 56 | <item name="android:layout_height">@dimen/setup_step_action_height</item> |
Tadashi G. Takaoka | fcefabf | 2013-04-18 17:19:40 +0900 | [diff] [blame] | 57 | </style> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 58 | <style name="setupStepActionLabelStyleCommon" parent="setupStepBaseStyle"> |
Tadashi G. Takaoka | 192743a | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 59 | <item name="android:textColor">@color/setup_step_action_color</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 60 | <item name="android:background">@drawable/setup_step_action_background</item> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 61 | <item name="android:layout_height">@dimen/setup_step_action_height</item> |
| 62 | <item name="android:paddingLeft">@dimen/setup_step_horizontal_padding_half</item> |
| 63 | <item name="android:textSize">@dimen/setup_step_action_text_size</item> |
| 64 | <item name="android:drawablePadding">@dimen/setup_step_horizontal_padding_half</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 65 | <item name="android:gravity">center_vertical</item> |
| 66 | <item name="android:clickable">true</item> |
| 67 | <item name="android:focusable">true</item> |
| 68 | </style> |
Tadashi G. Takaoka | fcefabf | 2013-04-18 17:19:40 +0900 | [diff] [blame] | 69 | <style name="setupStepStartActionLabelStyleCommon" parent="setupStepActionLabelStyleCommon"> |
Tadashi G. Takaoka | 0bff161 | 2013-04-23 16:30:00 +0900 | [diff] [blame] | 70 | <item name="android:paddingLeft">@dimen/setup_step_horizontal_padding</item> |
| 71 | <item name="android:paddingRight">@dimen/setup_step_horizontal_padding</item> |
Tadashi G. Takaoka | fcefabf | 2013-04-18 17:19:40 +0900 | [diff] [blame] | 72 | </style> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 73 | </resources> |