mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
1fa6e117e1
Add vector versions for some notification icons (yay Illustrator) Add comments reminding people to add their settings to GlobalSettings. <plurals> support for notification_new_messages_title Not sure why #ffffffff is resulting in black with targetSdk 17.
12 lines
640 B
XML
12 lines
640 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<!-- On Lollipop, notifications are on white rather than on dark grey, making
|
|
the title too light. When using targetSdk 17, #ffffffff (which should be
|
|
white) is being used as a mask or inverted (not sure which). The net
|
|
effect is that specifying #ffffffff is resulting in black text. This
|
|
needs to change once we go to targetSdk 21. -->
|
|
<style name="TextAppearance.StatusBar.EventContent.Emphasized" parent="@android:style/TextAppearance.StatusBar.EventContent">
|
|
<item name="android:textColor">#ffffffff</item>
|
|
</style>
|
|
</resources>
|