X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FDownloadImageDialog.java;h=2221bfe98c20b5ffebbad4019d1d7f1abb73a2f0;hp=4568607ddd45a6172a1d3196af01902ffa4ae245;hb=0a5d2eabceeafb49a957598538aa74d4f11dfce0;hpb=d420aa6be32a78b27905074edc3881a6e71d2263 diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/DownloadImageDialog.java b/app/src/main/java/com/stoutner/privacybrowser/dialogs/DownloadImageDialog.java index 4568607d..2221bfe9 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/DownloadImageDialog.java +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/DownloadImageDialog.java @@ -108,7 +108,7 @@ public class DownloadImageDialog extends AppCompatDialogFragment { // Get the activity's layout inflater. LayoutInflater layoutInflater = getActivity().getLayoutInflater(); - // Use `AlertDialog.Builder` to create the `AlertDialog`. + // Use and alert dialog builder to create the alert dialog. AlertDialog.Builder dialogBuilder; // Set the style according to the theme. @@ -124,28 +124,33 @@ public class DownloadImageDialog extends AppCompatDialogFragment { // Set the view. The parent view is `null` because it will be assigned by `AlertDialog`. dialogBuilder.setView(layoutInflater.inflate(R.layout.download_image_dialog, null)); - // Set an `onClick()` listener on the negative button. + // Set an listener on the negative button. dialogBuilder.setNegativeButton(R.string.cancel, (DialogInterface dialog, int which) -> { // Do nothing if `Cancel` is clicked. }); - // Set an `onClick()` listener on the positive button + // Set an listener on the positive button dialogBuilder.setPositiveButton(R.string.download, (DialogInterface dialog, int which) -> { // trigger `onDownloadFile()` and return the `DialogFragment` and the download URL to the parent activity. downloadImageListener.onDownloadImage(DownloadImageDialog.this, imageUrl); }); - // Create an `AlertDialog` from the `AlertDialog.Builder`. + // Create an alert dialog from the alert dialog builder. final AlertDialog alertDialog = dialogBuilder.create(); - // Remove the warning below that `setSoftInputMode` might produce `java.lang.NullPointerException`. + // Remove the warning below that `getWindow()` might be null. assert alertDialog.getWindow() != null; + // Disable screenshots if not allowed. + if (!MainWebViewActivity.allowScreenshots) { + alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE); + } + // Show the keyboard when `alertDialog` is displayed on the screen. alertDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE); - // We need to show `alertDialog` before we can modify the contents. + // The alert dialog must be shown before the contents can be modified. alertDialog.show(); // Set the text for `downloadImageNameTextView`.