blob: 16a3f3f070b4378143057195f5a5a567e2da070f [file] [log] [blame]
Jim Miller5ecd8112013-01-09 18:50:26 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2012, 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>
21 <!-- Keyguard PIN pad styles -->
22 <style name="Widget.Button.NumPadKey"
23 parent="@android:style/Widget.Button">
24 <item name="android:singleLine">true</item>
25 <item name="android:padding">6dip</item>
26 <item name="android:gravity">left|center_vertical</item>
27 <item name="android:background">?android:attr/selectableItemBackground</item>
28 <item name="android:textSize">34dp</item>
29 <item name="android:fontFamily">sans-serif</item>
30 <item name="android:textStyle">normal</item>
31 <item name="android:textColor">#ffffff</item>
32 <item name="android:paddingBottom">10dp</item>
33 <item name="android:paddingLeft">20dp</item>
34 </style>
35 <style name="TextAppearance.NumPadKey"
36 parent="@android:style/TextAppearance">
37 <item name="android:textSize">34dp</item>
38 <item name="android:fontFamily">sans-serif</item>
39 <item name="android:textStyle">normal</item>
40 <item name="android:textColor">#ffffff</item>
41 </style>
42 <style name="TextAppearance.NumPadKey.Klondike">
43 <item name="android:textSize">20dp</item>
44 <item name="android:fontFamily">sans-serif-condensed</item>
45 <item name="android:textStyle">normal</item>
46 <item name="android:textColor">#80ffffff</item>
47 </style>
48
49 <!-- Standard animations for a non-full-screen window or activity. -->
50 <style name="Animation.LockScreen" parent="@android:style/Animation">
51 <item name="android:windowEnterAnimation">@anim/lock_screen_enter</item>
52 <item name="android:windowExitAnimation">@anim/lock_screen_exit</item>
53 </style>
54
55</resources>