Home | History | Annotate | Download | only in values
      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     <!-- Standard animations for a non-full-screen window or activity. -->
     39     <style name="Animation.LockScreen" parent="@android:style/Animation">
     40         <item name="android:windowEnterAnimation">@anim/lock_screen_enter</item>
     41         <item name="android:windowExitAnimation">@anim/lock_screen_exit</item>
     42     </style>
     43 
     44     <!-- Built-in clock widget stuff -->
     45     <style name="widget_label">
     46         <item name="android:textSize">@dimen/widget_label_font_size</item>
     47     </style>
     48     <style name="big_thin">
     49         <item name="android:textSize">@dimen/big_font_size</item>
     50         <item name="android:fontFamily">sans-serif-thin</item>
     51     </style>
     52     <style name="widget_big_thin" parent="big_thin">
     53         <item name="android:textSize">@dimen/widget_big_font_size</item>
     54     </style>
     55 
     56     <style name="Widget.TransportControl.SeekBar" parent="@android:style/Widget.DeviceDefault.Light.SeekBar">
     57         <item name="android:indeterminateOnly">false</item>
     58         <item name="android:progressDrawable">@drawable/scrubber_progress_horizontal_holo_light</item>
     59         <item name="android:indeterminateDrawable">@drawable/scrubber_progress_horizontal_holo_light</item>
     60         <item name="android:minHeight">13dip</item>
     61         <item name="android:maxHeight">13dip</item>
     62         <item name="android:thumb">@drawable/scrubber_control_selector_holo</item>
     63         <item name="android:thumbOffset">16dip</item>
     64         <item name="android:focusable">true</item>
     65         <item name="android:paddingStart">16dip</item>
     66         <item name="android:paddingEnd">16dip</item>
     67         <item name="android:mirrorForRtl">true</item>
     68     </style>
     69 
     70     <style name="BouncerSecurityContainer">
     71         <item name="android:layout_gravity">center_horizontal|bottom</item>
     72     </style>
     73 
     74     <style name="PasswordTheme" parent="@android:style/Theme.DeviceDefault">
     75         <item name="android:colorControlNormal">#80ffffff</item>
     76         <item name="android:colorControlActivated">#80ffffff</item>
     77     </style>
     78 </resources>
     79