Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <!--Color-->
  2. <style name="ThemeOverlay.Color" parent="AppTheme">
  3. <!--Customization goes here-->
  4. </style>
  5.  
  6. <!--Shape-->
  7. <style name="ThemeOverlay.ShapeSize" parent="">
  8. <item name="shapeAppearanceSmallComponent">@style/ShapeAppearanceComponent.RoundCorner</item>
  9. <item name="shapeAppearanceMediumComponent">@style/ShapeAppearanceComponent.CutCorner</item>
  10. <item name="shapeAppearanceLargeComponent">@style/ShapeAppearanceComponent.CutCorner</item>
  11. </style>
  12.  
  13. <!--Typography-->
  14.  
  15. <style name="ThemeOverlay.Typography" parent="">
  16. <item name="textAppearanceBody1">@style/TextAppearance.Typography.Body1</item>
  17. <item name="textAppearanceBody2">@style/TextAppearance.Typography.Body2</item>
  18. </style>
  19.  
  20. ....
  21. <!--Child styles-->
  22. <style name="ThemeOverlay.Shapes.Rounded" parent="">
  23. <item name="cornerFamily">rounded</item>
  24. </style>
  25.  
  26. <style name="ThemeOverlay.Shapes.Cut" parent="">
  27. <item name="cornerFamily">cut</item>
  28. </style>
  29.  
  30. <style name="ShapeAppearanceComponent.CutCorner" parent="ThemeOverlay.Shapes.Cut">
  31. <item name="cornerSize">8dp</item>
  32. </style>
  33.  
  34. <style name="ShapeAppearanceComponent.RoundCorner" parent="ThemeOverlay.Shapes.Rounded">
  35. <item name="cornerSize">4dp</item>
  36. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement