X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FStoragePermissionDialog.java;h=e1d0c409eb795bcc54bed84f4239d296ab357fd8;hb=91154b307513e7bc6958b27fba518e4f9b564cf9;hp=ed1195959043a43b6558cd3f40471dd5f0e09a7e;hpb=33bd447a83bd3d763ee26bbb3a3f4adb074776ed;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/StoragePermissionDialog.java b/app/src/main/java/com/stoutner/privacybrowser/dialogs/StoragePermissionDialog.java index ed119595..e1d0c409 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/StoragePermissionDialog.java +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/StoragePermissionDialog.java @@ -1,5 +1,5 @@ /* - * Copyright © 2018 Soren Stoutner . + * Copyright © 2018-2020 Soren Stoutner . * * This file is part of Privacy Browser . * @@ -19,30 +19,39 @@ package com.stoutner.privacybrowser.dialogs; -import android.app.AlertDialog; import android.app.Dialog; import android.content.Context; import android.content.DialogInterface; +import android.content.SharedPreferences; +import android.content.res.Configuration; import android.os.Bundle; -// `AppCompatDialogFragment` must be used instead of `DialogFragment` or the browse button doesn't work correctly in the other dialog for saving logcats. -import android.support.annotation.NonNull; -import android.support.v7.app.AppCompatDialogFragment; +import android.preference.PreferenceManager; import android.view.WindowManager; +import androidx.annotation.NonNull; +import androidx.appcompat.app.AlertDialog; +import androidx.fragment.app.DialogFragment; + import com.stoutner.privacybrowser.R; -import com.stoutner.privacybrowser.activities.MainWebViewActivity; -public class StoragePermissionDialog extends AppCompatDialogFragment { +public class StoragePermissionDialog extends DialogFragment { + // Define the save type constants. + public static final int OPEN = 0; + public static final int SAVE_URL = 1; + public static final int SAVE_ARCHIVE = 2; + public static final int SAVE_TEXT = 3; + public static final int SAVE_IMAGE = 4; + // The listener is used in `onAttach()` and `onCreateDialog()`. private StoragePermissionDialogListener storagePermissionDialogListener; // The public interface is used to send information back to the parent activity. public interface StoragePermissionDialogListener { - void onCloseStoragePermissionDialog(); + void onCloseStoragePermissionDialog(int requestType); } @Override - public void onAttach(Context context) { + public void onAttach(@NonNull Context context) { // Run the default commands. super.onAttach(context); @@ -50,19 +59,46 @@ public class StoragePermissionDialog extends AppCompatDialogFragment { storagePermissionDialogListener = (StoragePermissionDialogListener) context; } + public static StoragePermissionDialog displayDialog(int requestType) { + // Create an arguments bundle. + Bundle argumentsBundle = new Bundle(); + + // Store the save type in the bundle. + argumentsBundle.putInt("request_type", requestType); + + // Create a new instance of the storage permission dialog. + StoragePermissionDialog storagePermissionDialog = new StoragePermissionDialog(); + + // Add the arguments bundle to the new dialog. + storagePermissionDialog.setArguments(argumentsBundle); + + // Return the new dialog. + return storagePermissionDialog; + } + @NonNull @Override public Dialog onCreateDialog(Bundle savedInstanceState) { + // Get a handle for the arguments. + Bundle arguments = getArguments(); + + // Remove the incorrect lint warning that the arguments might be null. + assert arguments != null; + + // Get the save type. + int requestType = arguments.getInt("request_type"); + // Use a builder to create the alert dialog. - AlertDialog.Builder dialogBuilder; + AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(requireContext(), R.style.PrivacyBrowserAlertDialog); - // Set the style and the icon according to the theme. - if (MainWebViewActivity.darkTheme) { - dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogDark); - dialogBuilder.setIcon(R.drawable.import_export_dark); + // Get the current theme status. + int currentThemeStatus = getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; + + // Set the icon according to the theme. + if (currentThemeStatus == Configuration.UI_MODE_NIGHT_YES) { + dialogBuilder.setIcon(R.drawable.import_export_night); } else { - dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight); - dialogBuilder.setIcon(R.drawable.import_export_light); + dialogBuilder.setIcon(R.drawable.import_export_day); } // Set the title. @@ -71,17 +107,23 @@ public class StoragePermissionDialog extends AppCompatDialogFragment { // Set the text. dialogBuilder.setMessage(R.string.storage_permission_message); - // Set an `onClick` listener on the negative button. + // Set an listener on the OK button. dialogBuilder.setNegativeButton(R.string.ok, (DialogInterface dialog, int which) -> { // Inform the parent activity that the dialog was closed. - storagePermissionDialogListener.onCloseStoragePermissionDialog(); + storagePermissionDialogListener.onCloseStoragePermissionDialog(requestType); }); // Create an alert dialog from the builder. final AlertDialog alertDialog = dialogBuilder.create(); + // Get a handle for the shared preferences. + SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getContext()); + + // Get the screenshot preference. + boolean allowScreenshots = sharedPreferences.getBoolean("allow_screenshots", false); + // Disable screenshots if not allowed. - if (!MainWebViewActivity.allowScreenshots) { + if (!allowScreenshots) { // Remove the warning below that `getWindow()` might be null. assert alertDialog.getWindow() != null; @@ -89,7 +131,7 @@ public class StoragePermissionDialog extends AppCompatDialogFragment { alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE); } - // `onCreateDialog()` requires the return of an `AlertDialog`. + // Return the alert dialog. return alertDialog; } -} +} \ No newline at end of file