Advertisement
gimmeitorilltell

candy_styles,xml

Mar 15th, 2017
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2014-2015 Benzo Rom
  4.  
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8.  
  9. http://www.apache.org/licenses/LICENSE-2.0
  10.  
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <resources>
  18.  
  19. <!-- Pure Tuner Theme-->
  20. <style name="ExTunerSettings" parent="@android:style/Theme.Material.Settings">
  21. <item name="preferenceTheme">@style/TunerPreferenceTheme</item>
  22. </style>
  23.  
  24. <!-- Custom Carrier Label -->
  25. <style name="TextAppearance.StatusBar.CarrierLabel" parent="@*android:style/TextAppearance.StatusBar.Icon">
  26. <!-- Note: must be dp to fit in status bar -->
  27. <item name="android:textSize">@dimen/status_bar_carrier_height</item>
  28. <item name="android:textStyle">normal</item>
  29. <item name="android:textColor">@color/status_bar_carrier_color</item>
  30. </style>
  31.  
  32. <!-- Base battery metter drawable style -->
  33. <style name="BatteryMeterViewDrawable">
  34. <!-- Gravity used for positioning text within the battery meter -->
  35. <item name="android:gravity">center</item>
  36. <item name="blendMode">clear</item>
  37. </style>
  38.  
  39. <!-- Battery meter drawable styles -->
  40. <style name="BatteryMeterViewDrawable.Portrait"/>
  41. <style name="BatteryMeterViewDrawable.Landscape"/>
  42. <style name="BatteryMeterViewDrawable.Circle">
  43. <item name="blendMode">overlay</item>
  44. </style>
  45.  
  46. <!-- Statusbar Weather -->
  47. <style name="TextAppearance.StatusBar.WeatherTemp" parent="@*android:style/TextAppearance.StatusBar">
  48.  
  49. <style name="TextAppearance.StatusBar.PhoneTicker"
  50. parent="@*android:style/TextAppearance.StatusBar.Ticker">
  51. <!-- Note: must be dp to fit in status bar -->
  52. <item name="android:textSize">14dp</item>
  53. </style>
  54.  
  55. <!-- Expanded Weather -->
  56. <style name="TextAppearance.StatusBar.Expanded.Weather">
  57. <item name="android:textSize">12sp</item>
  58. <item name="android:textStyle">normal</item>
  59. <item name="android:textColor">#ffffff</item>
  60. </style>
  61.  
  62. <style name="TextAppearance.StatusBar.Expanded.Weather.Detailed">
  63. <item name="android:textSize">14sp</item>
  64. <item name="android:textStyle">normal</item>
  65. <item name="android:textColor">#ffffff</item>
  66. </style>
  67.  
  68. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement