You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
674 B
25 lines
674 B
<?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/backup"
|
|
android:icon="@mipmap/ic_backup"
|
|
android:title="Backup"
|
|
app:showAsAction="always"
|
|
></item>
|
|
|
|
<item
|
|
android:id="@+id/delete"
|
|
android:icon="@mipmap/ic_delete"
|
|
android:title="Delete"
|
|
app:showAsAction="ifRoom"
|
|
></item>
|
|
|
|
<item
|
|
android:id="@+id/settings"
|
|
android:icon="@mipmap/ic_settings"
|
|
android:title="Settings"
|
|
app:showAsAction="never"
|
|
></item>
|
|
</menu> |