gello: fix iconography on autofill preferences

Change-Id: I4773db71ff97e524665e0c26732b46780cf433bd
Signed-off-by: jrizzoli <joey@cyanogenmoditalia.it>
diff --git a/res/drawable/ic_action_save.xml b/res/drawable/ic_action_save.xml
new file mode 100644
index 0000000..cc24d5c
--- /dev/null
+++ b/res/drawable/ic_action_save.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+    android:width="24dp"
+    android:height="24dp"
+    android:viewportWidth="24"
+    android:viewportHeight="24">
+
+    <path
+        android:pathData="M0 0h24v24h-24z" />
+    <path
+        android:fillColor="@color/icon_white"
+        android:pathData="M17 3h-12c-1.11 0-2 .9-2 2v14c0 1.1 .89 2 2 2h14c1.1 0 2-.9 2-2v-12l-4-4zm-5
+16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10h-10v-4h10v4z" />
+</vector>
diff --git a/res/menu/autofill_profile_editor.xml b/res/menu/autofill_profile_editor.xml
index 9dab635..4c5561b 100644
--- a/res/menu/autofill_profile_editor.xml
+++ b/res/menu/autofill_profile_editor.xml
@@ -17,11 +17,11 @@
 <menu xmlns:android="http://schemas.android.com/apk/res/android">
     <item android:id="@+id/autofill_profile_editor_save_profile_menu_id"
         android:title="@string/autofill_profile_editor_save_profile"
-        android:icon="@android:drawable/ic_menu_save"
+        android:icon="@drawable/ic_action_save"
         android:showAsAction="ifRoom|withText" />
 
     <item android:id="@+id/autofill_profile_editor_delete_profile_menu_id"
         android:title="@string/autofill_profile_editor_delete_profile"
-        android:icon="@android:drawable/ic_menu_delete"
+        android:icon="@drawable/ic_action_close_inverted"
         android:showAsAction="ifRoom|withText" />
 </menu>