2014-01-07 21:02:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-02-02 14:30:40 +01:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2014-01-07 21:02:31 +01:00
|
|
|
|
2014-02-06 22:16:41 +00:00
|
|
|
<item
|
|
|
|
|
android:id="@+id/menu_key_edit_save"
|
2014-03-29 15:33:03 +00:00
|
|
|
android:icon="@drawable/ic_action_save"
|
2014-02-06 22:16:41 +00:00
|
|
|
app:showAsAction="always"
|
|
|
|
|
android:title="@string/btn_save">
|
|
|
|
|
</item>
|
2014-01-07 21:02:31 +01:00
|
|
|
<item
|
|
|
|
|
android:id="@+id/menu_key_edit_export_file"
|
2014-02-02 14:30:40 +01:00
|
|
|
app:showAsAction="never"
|
|
|
|
|
android:title="@string/menu_export_key" />
|
2014-01-07 21:02:31 +01:00
|
|
|
<item
|
|
|
|
|
android:id="@+id/menu_key_edit_delete"
|
2014-02-02 14:30:40 +01:00
|
|
|
app:showAsAction="never"
|
|
|
|
|
android:title="@string/menu_delete_key" />
|
2014-01-07 21:02:31 +01:00
|
|
|
<item
|
|
|
|
|
android:id="@+id/menu_key_edit_cancel"
|
2014-02-02 14:30:40 +01:00
|
|
|
app:showAsAction="never"
|
|
|
|
|
android:title="@string/menu_key_edit_cancel" />
|
2014-01-07 21:02:31 +01:00
|
|
|
|
|
|
|
|
</menu>
|