styles.xml 552 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <resources>
  3. <style name="CustomWindowTitleBackground">
  4. <item name="android:background">@drawable/gray_gradient</item>
  5. </style>
  6. <style name="test" parent="android:Theme">
  7. <item name="android:windowTitleSize">40dp</item>
  8. <item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
  9. </style>
  10. <style name="mytheme" parent="android:Theme.Black">
  11. <item name="android:textSize">15sp</item>
  12. <item name="android:textColor">#FFFFFFFF</item>
  13. </style>
  14. </resources>