From b5fe31396d7a7f6970cc0630bd18def57d9b13c4 Mon Sep 17 00:00:00 2001 From: Vache Date: Fri, 13 Nov 2020 17:07:22 +0530 Subject: [PATCH] MotoActions: Import Stock drawables Co-authored-by: Rohan Hasabe Change-Id: Ifea41d44ab133db5b921341f5beb3e9bf5e618c5 Signed-off-by: Rohan Hasabe --- MotoActions/res/color/chop.xml | 6 +++++ MotoActions/res/color/flip.xml | 6 +++++ MotoActions/res/color/pick.xml | 6 +++++ MotoActions/res/color/pick2.xml | 6 +++++ MotoActions/res/color/pick3.xml | 6 +++++ MotoActions/res/color/quick.xml | 6 +++++ MotoActions/res/drawable/ic_settings_chop.xml | 13 +++++++++++ MotoActions/res/drawable/ic_settings_flip.xml | 16 ++++++++++++++ MotoActions/res/drawable/ic_settings_pick.xml | 12 ++++++++++ .../res/drawable/ic_settings_twist.xml | 22 +++++++++++++++++++ MotoActions/res/drawable/ic_settings_wave.xml | 10 +++++++++ MotoActions/res/xml/actions_panel.xml | 15 ++++++++----- 12 files changed, 119 insertions(+), 5 deletions(-) create mode 100644 MotoActions/res/color/chop.xml create mode 100644 MotoActions/res/color/flip.xml create mode 100644 MotoActions/res/color/pick.xml create mode 100644 MotoActions/res/color/pick2.xml create mode 100644 MotoActions/res/color/pick3.xml create mode 100644 MotoActions/res/color/quick.xml create mode 100644 MotoActions/res/drawable/ic_settings_chop.xml create mode 100644 MotoActions/res/drawable/ic_settings_flip.xml create mode 100644 MotoActions/res/drawable/ic_settings_pick.xml create mode 100644 MotoActions/res/drawable/ic_settings_twist.xml create mode 100644 MotoActions/res/drawable/ic_settings_wave.xml diff --git a/MotoActions/res/color/chop.xml b/MotoActions/res/color/chop.xml new file mode 100644 index 0000000..dbc4b31 --- /dev/null +++ b/MotoActions/res/color/chop.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/MotoActions/res/color/flip.xml b/MotoActions/res/color/flip.xml new file mode 100644 index 0000000..2c494b3 --- /dev/null +++ b/MotoActions/res/color/flip.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/MotoActions/res/color/pick.xml b/MotoActions/res/color/pick.xml new file mode 100644 index 0000000..07fd2a5 --- /dev/null +++ b/MotoActions/res/color/pick.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/MotoActions/res/color/pick2.xml b/MotoActions/res/color/pick2.xml new file mode 100644 index 0000000..97b189f --- /dev/null +++ b/MotoActions/res/color/pick2.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/MotoActions/res/color/pick3.xml b/MotoActions/res/color/pick3.xml new file mode 100644 index 0000000..aa00b39 --- /dev/null +++ b/MotoActions/res/color/pick3.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/MotoActions/res/color/quick.xml b/MotoActions/res/color/quick.xml new file mode 100644 index 0000000..215cf11 --- /dev/null +++ b/MotoActions/res/color/quick.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/MotoActions/res/drawable/ic_settings_chop.xml b/MotoActions/res/drawable/ic_settings_chop.xml new file mode 100644 index 0000000..8e2926b --- /dev/null +++ b/MotoActions/res/drawable/ic_settings_chop.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + diff --git a/MotoActions/res/drawable/ic_settings_flip.xml b/MotoActions/res/drawable/ic_settings_flip.xml new file mode 100644 index 0000000..7b07736 --- /dev/null +++ b/MotoActions/res/drawable/ic_settings_flip.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/MotoActions/res/drawable/ic_settings_pick.xml b/MotoActions/res/drawable/ic_settings_pick.xml new file mode 100644 index 0000000..adfdece --- /dev/null +++ b/MotoActions/res/drawable/ic_settings_pick.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/MotoActions/res/drawable/ic_settings_twist.xml b/MotoActions/res/drawable/ic_settings_twist.xml new file mode 100644 index 0000000..50675ca --- /dev/null +++ b/MotoActions/res/drawable/ic_settings_twist.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/MotoActions/res/drawable/ic_settings_wave.xml b/MotoActions/res/drawable/ic_settings_wave.xml new file mode 100644 index 0000000..5c559a4 --- /dev/null +++ b/MotoActions/res/drawable/ic_settings_wave.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/MotoActions/res/xml/actions_panel.xml b/MotoActions/res/xml/actions_panel.xml index 7bb0784..4860513 100644 --- a/MotoActions/res/xml/actions_panel.xml +++ b/MotoActions/res/xml/actions_panel.xml @@ -26,31 +26,36 @@ android:key="gesture_camera_action" android:defaultValue="true" android:title="@string/camera_gesture_title" - android:summary="@string/camera_gesture_summary" /> + android:summary="@string/camera_gesture_summary" + android:icon="@drawable/ic_settings_twist" /> + android:summary="@string/chop_chop_gesture_summary" + android:icon="@drawable/ic_settings_chop" /> + android:summary="@string/hand_wave_silencer_summary" + android:icon="@drawable/ic_settings_wave" /> + android:summary="@string/flip_to_mute_summary" + android:icon="@drawable/ic_settings_flip" /> + android:summary="@string/lift_to_silence_summary" + android:icon="@drawable/ic_settings_pick" /> -- 2.20.1