[android] Allow the user to save image attachment outside of Briar

This commit is contained in:
Torsten Grote
2018-11-26 20:12:59 -02:00
parent 5e5705c73b
commit 77299a68ed
6 changed files with 163 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
<?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/action_save_image"
android:title="@string/save_image"
android:visible="false"
app:showAsAction="never"/>
</menu>

View File

@@ -139,6 +139,10 @@
<string name="contact_deleted_toast">Contact deleted</string>
<!-- This is shown in the action bar when opening an image in fullscreen that the user sent -->
<string name="you">You</string>
<string name="save_image">Save image</string>
<string name="dialog_title_save_image">Save Image?</string>
<string name="dialog_message_save_image">Saving this image will allow other apps to access it.\n\nAre you sure you want to save?</string>
<string name="save_image_error">Could not save image</string>
<!-- Adding Contacts -->
<string name="add_contact_title">Add a Contact</string>