Skip to content

Commit

Permalink
Add menu item "Done" with id "done", title "Done", icon "@drawable/ic…
Browse files Browse the repository at this point in the history
…_done", and showAsAction "always" to menu_tick.xml.
  • Loading branch information
nqmgaming committed Nov 14, 2023
1 parent 11c61c5 commit 3d98e13
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/src/main/res/menu/menu_tick.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:title="Done"
android:id="@+id/done"
android:icon="@drawable/ic_done"
app:showAsAction="always"/>
</menu>

0 comments on commit 3d98e13

Please sign in to comment.