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> |
| 24 | <style name="setupStepBulletStyle"> |
| 25 | <item name="android:textColor">@color/setup_text_dark</item> |
| 26 | <item name="android:textSize">22sp</item> |
| 27 | <item name="android:layout_width">0dp</item> |
| 28 | <item name="android:layout_weight">1.0</item> |
| 29 | <item name="android:layout_height">wrap_content</item> |
| 30 | <item name="android:gravity">center_horizontal</item> |
| 31 | </style> |
| 32 | <style name="setupStepBaseStyle"> |
| 33 | <item name="android:textColor">@color/setup_text_dark</item> |
| 34 | <item name="android:background">@color/setup_step_background</item> |
| 35 | <item name="android:layout_width">match_parent</item> |
| 36 | <item name="android:layout_height">wrap_content</item> |
| 37 | <item name="android:paddingLeft">24dp</item> |
| 38 | <item name="android:paddingRight">24dp</item> |
| 39 | </style> |
| 40 | <style name="setupStepTitleStyle" parent="setupStepBaseStyle"> |
| 41 | <item name="android:textSize">22sp</item> |
| 42 | </style> |
| 43 | <style name="setupStepInstructionStyle" parent="setupStepBaseStyle"> |
| 44 | <item name="android:textSize">14sp</item> |
| 45 | </style> |
| 46 | <style name="setupStepActionLabelStyleCommon" parent="setupStepBaseStyle"> |
Tadashi G. Takaoka | 192743a | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 47 | <item name="android:textColor">@color/setup_step_action_color</item> |
Tadashi G. Takaoka | 30f102e | 2013-04-18 15:11:33 +0900 | [diff] [blame] | 48 | <item name="android:background">@drawable/setup_step_action_background</item> |
| 49 | <item name="android:layout_height">48dp</item> |
| 50 | <item name="android:paddingLeft">12dp</item> |
| 51 | <item name="android:textSize">18sp</item> |
| 52 | <item name="android:drawablePadding">12dp</item> |
| 53 | <item name="android:gravity">center_vertical</item> |
| 54 | <item name="android:clickable">true</item> |
| 55 | <item name="android:focusable">true</item> |
| 56 | </style> |
| 57 | </resources> |