Guest User

Untitled

a guest
Jul 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <style name="Theme.Themeswitch.Light" parent="android:style/Theme.Light">
  2. <item name="bigLabel">@style/ShadowedLabel.Light</item>
  3. </style>
  4.  
  5. <style name="Theme.Themeswitch.Black" parent="android:style/Theme.Black">
  6. <item name="bigLabel">@style/ShadowedLabel.Black</item>
  7. </style>
  8.  
  9. <style name="ShadowedLabel">
  10. <!-- all the common properties -->
  11. <item name="android:textSize">@dimen/text_size_huge</item>
  12. <item name="android:textStyle">bold</item>
  13. <item name="android:shadowDx">1</item>
  14. <item name="android:shadowDy">1</item>
  15. <item name="android:shadowRadius">1</item>
  16. </style>
  17.  
  18. <style name="ShadowedLabel.Black">
  19. <item name="android:shadowColor">@color/black</item>
  20. </style>
  21.  
  22. <style name="ShadowedLabel.Light">
  23. <item name="android:shadowColor">@color/white</item>
  24. </style>
Add Comment
Please, Sign In to add comment