blob: 10f6ffc0dbb0b117f64cd25dae3f8be828e2246c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="NotificationText.Title" parent="@android:style/TextAppearance.Material.Notification.Title"></style>
<style name="NotificationText.Content" parent="@android:style/TextAppearance.Material.Notification"></style>
<style name="NotificationButton" parent="NotificationButtonBase">
<item name="android:background">?android:selectableItemBackgroundBorderless</item>
</style>
<style name="NotificationButton.Expanded" parent="@style/NotificationButton.ExpandedBase">
<item name="android:padding">2dip</item>
<item name="android:background">?android:selectableItemBackgroundBorderless</item>
</style>
<style name="NotificationLayoutDivider">
<item name="android:divider">@drawable/notification_divider</item>
</style>
<style name="NotificationDivider">
<item name="android:background">@drawable/notification_divider</item>
</style>
</resources>
|