Add feedback when downloading image

fixes #388
This commit is contained in:
flyingrub 2017-09-24 20:53:03 +02:00
parent 67f3ce6e4e
commit 402f696c10
3 changed files with 7 additions and 0 deletions

View file

@ -41,6 +41,7 @@ import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Toast;
import com.keylesspalace.tusky.fragment.ViewMediaFragment;
import com.keylesspalace.tusky.pager.ImagePagerAdapter;
@ -218,6 +219,10 @@ public class ViewMediaActivity extends BaseActivity implements ViewMediaFragment
String filename = new File(url).getName();
String toastText = String.format(getResources().getString(R.string.download_image),
filename);
Toast.makeText(this.getApplicationContext(), toastText, Toast.LENGTH_SHORT).show();
DownloadManager downloadManager =
(DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);

View file

@ -99,6 +99,7 @@
<string name="action_view_mutes">Utilisateurs muets</string>
<string name="send_status_link_to">Partager lURL de votre pouet avec…</string>
<string name="send_status_content_to">Partager le pouet avec…</string>
<string name="download_image">Téléchargement de %1$s</string>
<string name="confirmation_send">Pouet !</string>
<string name="confirmation_reported">Envoyé !</string>

View file

@ -100,6 +100,7 @@
<string name="action_reject">Reject</string>
<string name="action_search">Search</string>
<string name="action_access_saved_toot">Drafts</string>
<string name="download_image">Downloading %1$s</string>
<string name="send_status_link_to">Share toot URL to…</string>
<string name="send_status_content_to">Share toot to…</string>