2019-06-18 17:39:46 -03:00
|
|
|
<?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"
|
2019-09-19 18:06:02 -03:00
|
|
|
android:enabled="false"
|
2019-06-18 17:39:46 -03:00
|
|
|
android:title="@string/settings_backup_now"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_restore"
|
2019-09-19 18:06:02 -03:00
|
|
|
android:enabled="false"
|
2019-06-18 17:39:46 -03:00
|
|
|
android:title="@string/restore_backup_button"
|
|
|
|
android:visible="false"
|
|
|
|
app:showAsAction="never"
|
|
|
|
tools:visible="true" />
|
|
|
|
|
2019-12-06 09:31:48 -03:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_about"
|
|
|
|
android:title="@string/about_title"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2019-09-19 18:06:02 -03:00
|
|
|
</menu>
|