18 lines
562 B
XML
18 lines
562 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"
|
||
|
xmlns:tools="http://schemas.android.com/tools">
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_backup"
|
||
|
android:title="@string/settings_backup_now"
|
||
|
app:showAsAction="never" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_restore"
|
||
|
android:title="@string/restore_backup_button"
|
||
|
android:visible="false"
|
||
|
app:showAsAction="never"
|
||
|
tools:visible="true" />
|
||
|
|
||
|
</menu>
|