From 6a52608309ede743e40c7c99f290cdd3022ae916 Mon Sep 17 00:00:00 2001 From: Lucas Dupin Date: Wed, 2 Aug 2017 15:26:14 -0700 Subject: New keyguard icons Added new round icons, for "backspace" and "done". Change-Id: I938c221cec6e309263edc42b45fcab3c45c4bb1d Fixes: 64305264 Test: test light and dark wallpaper, look at keyguard. --- .../res-keyguard/drawable-hdpi/ic_done_wht.png | Bin 1374 -> 0 bytes .../res-keyguard/drawable-mdpi/ic_done_wht.png | Bin 1206 -> 0 bytes .../res-keyguard/drawable-xhdpi/ic_done_wht.png | Bin 1600 -> 0 bytes .../res-keyguard/drawable-xxhdpi/ic_done_wht.png | Bin 1133 -> 0 bytes .../res-keyguard/drawable-xxxhdpi/ic_done_wht.png | Bin 2753 -> 0 bytes .../res-keyguard/drawable/ic_backspace_24dp.xml | 26 --------------------- .../drawable/ic_backspace_black_24dp.xml | 25 ++++++++++++++++++++ .../res-keyguard/drawable/ic_done_black_24dp.xml | 25 ++++++++++++++++++++ .../res-keyguard/layout/keyguard_pin_view.xml | 5 ++-- .../res-keyguard/layout/keyguard_sim_pin_view.xml | 5 ++-- .../res-keyguard/layout/keyguard_sim_puk_view.xml | 5 ++-- 11 files changed, 59 insertions(+), 32 deletions(-) delete mode 100644 packages/SystemUI/res-keyguard/drawable-hdpi/ic_done_wht.png delete mode 100644 packages/SystemUI/res-keyguard/drawable-mdpi/ic_done_wht.png delete mode 100644 packages/SystemUI/res-keyguard/drawable-xhdpi/ic_done_wht.png delete mode 100644 packages/SystemUI/res-keyguard/drawable-xxhdpi/ic_done_wht.png delete mode 100644 packages/SystemUI/res-keyguard/drawable-xxxhdpi/ic_done_wht.png delete mode 100644 packages/SystemUI/res-keyguard/drawable/ic_backspace_24dp.xml create mode 100644 packages/SystemUI/res-keyguard/drawable/ic_backspace_black_24dp.xml create mode 100644 packages/SystemUI/res-keyguard/drawable/ic_done_black_24dp.xml diff --git a/packages/SystemUI/res-keyguard/drawable-hdpi/ic_done_wht.png b/packages/SystemUI/res-keyguard/drawable-hdpi/ic_done_wht.png deleted file mode 100644 index 82c01ef5cda7..000000000000 Binary files a/packages/SystemUI/res-keyguard/drawable-hdpi/ic_done_wht.png and /dev/null differ diff --git a/packages/SystemUI/res-keyguard/drawable-mdpi/ic_done_wht.png b/packages/SystemUI/res-keyguard/drawable-mdpi/ic_done_wht.png deleted file mode 100644 index 8c169301911a..000000000000 Binary files a/packages/SystemUI/res-keyguard/drawable-mdpi/ic_done_wht.png and /dev/null differ diff --git a/packages/SystemUI/res-keyguard/drawable-xhdpi/ic_done_wht.png b/packages/SystemUI/res-keyguard/drawable-xhdpi/ic_done_wht.png deleted file mode 100644 index 6a4d8a7b01ea..000000000000 Binary files a/packages/SystemUI/res-keyguard/drawable-xhdpi/ic_done_wht.png and /dev/null differ diff --git a/packages/SystemUI/res-keyguard/drawable-xxhdpi/ic_done_wht.png b/packages/SystemUI/res-keyguard/drawable-xxhdpi/ic_done_wht.png deleted file mode 100644 index 4c04ba28b58a..000000000000 Binary files a/packages/SystemUI/res-keyguard/drawable-xxhdpi/ic_done_wht.png and /dev/null differ diff --git a/packages/SystemUI/res-keyguard/drawable-xxxhdpi/ic_done_wht.png b/packages/SystemUI/res-keyguard/drawable-xxxhdpi/ic_done_wht.png deleted file mode 100644 index bd6c4df14a88..000000000000 Binary files a/packages/SystemUI/res-keyguard/drawable-xxxhdpi/ic_done_wht.png and /dev/null differ diff --git a/packages/SystemUI/res-keyguard/drawable/ic_backspace_24dp.xml b/packages/SystemUI/res-keyguard/drawable/ic_backspace_24dp.xml deleted file mode 100644 index 1e4022ea402b..000000000000 --- a/packages/SystemUI/res-keyguard/drawable/ic_backspace_24dp.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - diff --git a/packages/SystemUI/res-keyguard/drawable/ic_backspace_black_24dp.xml b/packages/SystemUI/res-keyguard/drawable/ic_backspace_black_24dp.xml new file mode 100644 index 000000000000..6edae4baf69a --- /dev/null +++ b/packages/SystemUI/res-keyguard/drawable/ic_backspace_black_24dp.xml @@ -0,0 +1,25 @@ + + + + + diff --git a/packages/SystemUI/res-keyguard/drawable/ic_done_black_24dp.xml b/packages/SystemUI/res-keyguard/drawable/ic_done_black_24dp.xml new file mode 100644 index 000000000000..5026f07de912 --- /dev/null +++ b/packages/SystemUI/res-keyguard/drawable/ic_done_black_24dp.xml @@ -0,0 +1,25 @@ + + + + + diff --git a/packages/SystemUI/res-keyguard/layout/keyguard_pin_view.xml b/packages/SystemUI/res-keyguard/layout/keyguard_pin_view.xml index 3283e0411ec4..631cc0d3df30 100644 --- a/packages/SystemUI/res-keyguard/layout/keyguard_pin_view.xml +++ b/packages/SystemUI/res-keyguard/layout/keyguard_pin_view.xml @@ -62,7 +62,7 @@ android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="center_vertical" - android:src="@drawable/ic_backspace_24dp" + android:src="@drawable/ic_backspace_black_24dp" android:clickable="true" android:paddingTop="8dip" android:paddingBottom="8dip" @@ -73,6 +73,7 @@ android:layout_alignEnd="@+id/pinEntry" android:layout_alignParentRight="true" android:tint="@color/pin_delete_color" + android:tintMode="src_in" />