blob: f90810fd377c8a07fe027f41dc260d99d01a5ae1 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001<?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 Guyb1b69f52009-08-10 15:10:15 -070021 <style name="Theme" parent="android:Theme.Wallpaper">
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022 <item name="android:windowNoTitle">true</item>
23 </style>
24
Romain Guy1fbc1c82009-11-09 20:43:08 -080025 <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 Project31dd5032009-03-03 19:32:27 -080030 <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 Guy8f19cdd2010-01-08 15:07:00 -080038 <item name="android:layout_width">match_parent</item>
39 <item name="android:layout_height">match_parent</item>
The Android Open Source Project31dd5032009-03-03 19:32:27 -080040 <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 Sharkey3fca10b2009-03-31 14:59:08 -070060
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 Guy73b979d2009-06-09 12:57:21 -070067
The Android Open Source Project31dd5032009-03-03 19:32:27 -080068</resources>