diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-11-09 17:35:33 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-11-09 17:35:33 -0800 |
commit | 69958bafdf2bf495a7ac3cd5888e5167cf9d8745 (patch) | |
tree | 1ec9932a434dc3725a681363c4c718ed7c74670b /app/src/main/res/values | |
parent | d396e0120e6d8a910e2e36e80c2656c83b80d745 (diff) | |
download | dsub-69958bafdf2bf495a7ac3cd5888e5167cf9d8745.tar.gz dsub-69958bafdf2bf495a7ac3cd5888e5167cf9d8745.tar.bz2 dsub-69958bafdf2bf495a7ac3cd5888e5167cf9d8745.zip |
Make notifications on L+ have ripple effect backgrounds
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/styles.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml index 30ca0315..0b45b69e 100644 --- a/app/src/main/res/values/styles.xml +++ b/app/src/main/res/values/styles.xml @@ -3,7 +3,7 @@ <style name="BasicButton"> <item name="android:background">?attr/selectableItemBackgroundBorderless</item> </style> - <style name="NotificationButton"> + <style name="NotificationButtonBase"> <item name="android:background">?android:selectableItemBackground</item> <item name="android:layout_width">46dip</item> <item name="android:layout_height">fill_parent</item> @@ -11,6 +11,8 @@ <item name="android:scaleType">fitCenter</item> <item name="android:padding">2dip</item> </style> + <style name="NotificationButton" parent="NotificationButtonBase"> + </style> <style name="NotificationButton.ExpandedBase"> <item name="android:background">?android:selectableItemBackground</item> |