X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Ffree%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FAdConsentDialog.java;h=d8d81e34f3e10c6679d1d7253ca2cd5e58b3a7bc;hp=c0cf972180468c0cc7ca43834a6dc0ee6aa672f3;hb=4ce562261f47e06c454504262a24f61f46bb393d;hpb=ba40295dffd761ccdc95d3b46ca7acbad1f00d5e diff --git a/app/src/free/java/com/stoutner/privacybrowser/dialogs/AdConsentDialog.java b/app/src/free/java/com/stoutner/privacybrowser/dialogs/AdConsentDialog.java index c0cf9721..d8d81e34 100644 --- a/app/src/free/java/com/stoutner/privacybrowser/dialogs/AdConsentDialog.java +++ b/app/src/free/java/com/stoutner/privacybrowser/dialogs/AdConsentDialog.java @@ -1,5 +1,5 @@ /* - * Copyright © 2018-2019 Soren Stoutner . + * Copyright © 2018-2020 Soren Stoutner . * * This file is part of Privacy Browser . * @@ -19,17 +19,20 @@ package com.stoutner.privacybrowser.dialogs; -import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; +import android.content.SharedPreferences; +import android.content.res.Configuration; import android.os.Build; import android.os.Bundle; +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; import com.stoutner.privacybrowser.helpers.AdConsentDatabaseHelper; import com.stoutner.privacybrowser.helpers.AdHelper; @@ -38,15 +41,16 @@ public class AdConsentDialog extends DialogFragment { @Override public Dialog onCreateDialog(Bundle savedInstanceState) { // 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.block_ads_enabled_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.block_ads_enabled_night); } else { - dialogBuilder = new AlertDialog.Builder(getActivity(), R.style.PrivacyBrowserAlertDialogLight); - dialogBuilder.setIcon(R.drawable.block_ads_enabled_light); + dialogBuilder.setIcon(R.drawable.block_ads_enabled_day); } // Remove the incorrect lint warning below that `getApplicationContext()` might be null. @@ -83,17 +87,35 @@ public class AdConsentDialog extends DialogFragment { // Update the ad consent database. adConsentDatabaseHelper.updateAdConsent(true); - // Load an ad. `getContext()` can be used instead of `getActivity.getApplicationContext()` on the minimum API >= 23. - AdHelper.loadAd(getActivity().findViewById(R.id.adview), getActivity().getApplicationContext(), getString(R.string.ad_unit_id)); + // Load an ad. `getContext()` can be used instead of `getActivity.getApplicationContext()` once the minimum API >= 23. + AdHelper.loadAd(getActivity().findViewById(R.id.adview), getActivity().getApplicationContext(), getActivity(), getString(R.string.ad_unit_id)); }); + // Create an alert dialog from the alert dialog builder. + 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 (!allowScreenshots) { + // Remove the warning below that `getWindow()` might be null. + assert alertDialog.getWindow() != null; + + // Disable screenshots. + alertDialog.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SECURE); + } + // Return the alert dialog. - return dialogBuilder.create(); + return alertDialog; } // Close Privacy Browser Free if the dialog is cancelled without selecting a button (by tapping on the background). @Override - public void onCancel(DialogInterface dialogInterface) { + public void onCancel(@NonNull DialogInterface dialogInterface) { // Remove the incorrect lint warning below that `getApplicationContext()` might be null. assert getActivity() != null; @@ -104,7 +126,7 @@ public class AdConsentDialog extends DialogFragment { // Update the ad consent database. adConsentDatabaseHelper.updateAdConsent(false); - // Close the browser. `finishAndRemoveTask` also removes Privacy Browser from the recent app list. + // Close the browser. `finishAndRemoveTask()` also removes Privacy Browser from the recent app list. if (Build.VERSION.SDK_INT >= 21) { getActivity().finishAndRemoveTask(); } else {