1 <?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.TextView.NumPadKey" parent="@android:style/Widget.TextView"> 23 <item name="android:singleLine">true</item> 24 <item name="android:gravity">center_horizontal|center_vertical</item> 25 <item name="android:background">@null</item> 26 <item name="android:textSize">36sp</item> 27 <item name="android:fontFamily">sans-serif-light</item> 28 <item name="android:textColor">#ffffffff</item> 29 <item name="android:paddingBottom">-16dp</item> 30 </style> 31 <style name="Widget.TextView.NumPadKey.Klondike" parent="Widget.TextView.NumPadKey"> 32 <item name="android:textSize">12sp</item> 33 <item name="android:fontFamily">sans-serif</item> 34 <item name="android:textColor">#80ffffff</item> 35 <item name="android:paddingBottom">0dp</item> 36 </style> 37 38 <!-- Built-in clock widget stuff --> 39 <style name="widget_label"> 40 <item name="android:textSize">@dimen/widget_label_font_size</item> 41 </style> 42 <style name="widget_big_thin"> 43 <item name="android:textSize">@dimen/widget_big_font_size</item> 44 <item name="android:fontFamily">sans-serif-light</item> 45 </style> 46 47 <style name="BouncerSecurityContainer"> 48 <item name="android:layout_gravity">center_horizontal|bottom</item> 49 </style> 50 51 <style name="PasswordTheme" parent="@android:style/Theme.DeviceDefault"> 52 <item name="android:colorControlNormal">#80ffffff</item> 53 <item name="android:colorControlActivated">#80ffffff</item> 54 </style> 55 56 <style name="keyguard_presentation_theme" parent="@android:style/Theme.Material.NoActionBar.Fullscreen"> 57 </style> 58 59 </resources> 60