The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | /* |
| 4 | * Copyright (C) 2008 The Android Open Source Project |
| 5 | * |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | */ |
| 18 | --> |
| 19 | |
| 20 | <resources> |
Romain Guy | b1b69f5 | 2009-08-10 15:10:15 -0700 | [diff] [blame] | 21 | <style name="Theme" parent="android:Theme.Wallpaper"> |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 22 | <item name="android:windowNoTitle">true</item> |
| 23 | </style> |
| 24 | |
Romain Guy | 1fbc1c8 | 2009-11-09 20:43:08 -0800 | [diff] [blame] | 25 | <style name="AnimationPreview"> |
| 26 | <item name="android:windowEnterAnimation">@anim/fade_in_fast</item> |
| 27 | <item name="android:windowExitAnimation">@anim/fade_out_fast</item> |
| 28 | </style> |
| 29 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 30 | <style name="WorkspaceIcon"> |
| 31 | <item name="android:textSize">13dip</item> |
| 32 | <item name="android:singleLine">true</item> |
| 33 | <item name="android:ellipsize">marquee</item> |
| 34 | <item name="android:shadowColor">#FF000000</item> |
| 35 | <item name="android:shadowRadius">2.0</item> |
| 36 | <item name="android:textColor">#FFF</item> |
| 37 | <item name="android:gravity">center_horizontal</item> |
Romain Guy | 8f19cdd | 2010-01-08 15:07:00 -0800 | [diff] [blame^] | 38 | <item name="android:layout_width">match_parent</item> |
| 39 | <item name="android:layout_height">match_parent</item> |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 40 | <item name="android:background">@drawable/shortcut_selector</item> |
| 41 | <item name="android:paddingLeft">5dip</item> |
| 42 | <item name="android:paddingRight">5dip</item> |
| 43 | </style> |
| 44 | |
| 45 | <style name="WorkspaceIcon.Portrait"> |
| 46 | <item name="android:drawablePadding">5dip</item> |
| 47 | <item name="android:paddingTop">4dip</item> |
| 48 | <item name="android:layout_marginLeft">3dip</item> |
| 49 | <item name="android:layout_marginRight">3dip</item> |
| 50 | <item name="android:layout_marginTop">13dip</item> |
| 51 | <item name="android:layout_marginBottom">8dip</item> |
| 52 | </style> |
| 53 | |
| 54 | <style name="WorkspaceIcon.Landscape"> |
| 55 | <item name="android:drawablePadding">3dip</item> |
| 56 | <item name="android:paddingTop">2dip</item> |
| 57 | <item name="android:layout_marginLeft">10dip</item> |
| 58 | <item name="android:layout_marginRight">10dip</item> |
| 59 | </style> |
Jeffrey Sharkey | 3fca10b | 2009-03-31 14:59:08 -0700 | [diff] [blame] | 60 | |
| 61 | <style name="SearchButton" parent="@android:style/Widget.Button.Small"> |
| 62 | <item name="android:paddingTop">7dip</item> |
| 63 | <item name="android:paddingBottom">9dip</item> |
| 64 | <item name="android:paddingLeft">10dip</item> |
| 65 | <item name="android:paddingRight">10dip</item> |
| 66 | </style> |
Romain Guy | 73b979d | 2009-06-09 12:57:21 -0700 | [diff] [blame] | 67 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 68 | </resources> |