diff options
author | Selim Cinek <cinek@google.com> | 2014-09-02 17:35:20 +0200 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2014-09-02 17:35:20 +0200 |
commit | b2da91b14fb8ad15a74d171a298649e8cb6322bb (patch) | |
tree | e988e6ecb999758a3229ad3b6b0c748378ee094e /packages/SystemUI/res/drawable/notification_material_bg_dim.xml | |
parent | abdc5a078242e6842a4b3fa62db3e385fcacfa56 (diff) | |
download | frameworks_base-b2da91b14fb8ad15a74d171a298649e8cb6322bb.zip frameworks_base-b2da91b14fb8ad15a74d171a298649e8cb6322bb.tar.gz frameworks_base-b2da91b14fb8ad15a74d171a298649e8cb6322bb.tar.bz2 |
Notifications are now selectable by the Keyboard
Also adapted the ripple colors a bit to be more visible.
Bug: 17203303
Change-Id: I7d0446d2641bcabb1e09b3af9535d88c4142e216
Diffstat (limited to 'packages/SystemUI/res/drawable/notification_material_bg_dim.xml')
-rw-r--r-- | packages/SystemUI/res/drawable/notification_material_bg_dim.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/packages/SystemUI/res/drawable/notification_material_bg_dim.xml b/packages/SystemUI/res/drawable/notification_material_bg_dim.xml index b04394d..6581942 100644 --- a/packages/SystemUI/res/drawable/notification_material_bg_dim.xml +++ b/packages/SystemUI/res/drawable/notification_material_bg_dim.xml @@ -14,7 +14,11 @@ ~ See the License for the specific language governing permissions and ~ limitations under the License --> -<shape xmlns:android="http://schemas.android.com/apk/res/android"> - <solid android:color="@color/notification_material_background_dimmed_color" /> - <corners android:radius="@dimen/notification_material_rounded_rect_radius" /> -</shape> +<ripple xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape> + <solid android:color="@color/notification_material_background_dimmed_color" /> + <corners android:radius="@dimen/notification_material_rounded_rect_radius" /> + </shape> + </item> +</ripple> |