Update Save Icon in NotesActivity
This commit is contained in:
parent
dbf5b3cd36
commit
b2214d8915
|
@ -18,7 +18,7 @@ public class NoteActivity : AppCompatActivity
|
|||
MenuInflater.Inflate(Resource.Menu.menu_note,menu);
|
||||
return true;
|
||||
}
|
||||
Func<Task> Save;
|
||||
Func<Task>? Save;
|
||||
public override bool OnOptionsItemSelected(IMenuItem item)
|
||||
{
|
||||
int id=item.ItemId;
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 918 B |
Binary file not shown.
Before Width: | Height: | Size: 539 B |
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,5 @@
|
|||
<vector android:height="24dp" android:tint="#878686"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M17,3L5,3c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,7l-4,-4zM12,19c-1.66,0 -3,-1.34 -3,-3s1.34,-3 3,-3 3,1.34 3,3 -1.34,3 -3,3zM15,9L5,9L5,5h10v4z"/>
|
||||
</vector>
|
|
@ -3,7 +3,7 @@
|
|||
xmlns:tools="http://schemas.android.com/tools"
|
||||
tools:context="com.example.myapplication.MainActivity">
|
||||
<item
|
||||
android:icon="@drawable/ic_action_save"
|
||||
android:icon="@drawable/baseline_save_24"
|
||||
android:id="@+id/action_save"
|
||||
android:orderInCategory="100"
|
||||
android:title="@string/action_save"
|
||||
|
|
Loading…
Reference in New Issue