12 lines
434 B
XML
12 lines
434 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
|
||
|
|
<item
|
||
|
|
android:id="@+id/delete_item"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:icon="@drawable/baseline_delete_24"
|
||
|
|
app:showAsAction="always"
|
||
|
|
android:title="@string/delete" />
|
||
|
|
</menu>
|