X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FSaveWebpageDialog.kt;h=3906078402abaaf078ffdd5261ecf15e38b33c87;hb=bda37dc9784e900cb64b87af3e221e11320d9d01;hp=d3420f3072432c4bf41fffc607135eb9c038cdd3;hpb=641d15ace34579762580ed8297f324133354499b;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/SaveWebpageDialog.kt b/app/src/main/java/com/stoutner/privacybrowser/dialogs/SaveWebpageDialog.kt index d3420f30..39060784 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/SaveWebpageDialog.kt +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/SaveWebpageDialog.kt @@ -24,7 +24,6 @@ import android.app.Dialog import android.content.Context import android.content.DialogInterface import android.content.Intent -import android.content.res.Configuration import android.net.Uri import android.os.AsyncTask import android.os.Bundle @@ -120,9 +119,6 @@ class SaveWebpageDialog : DialogFragment() { // Use an alert dialog builder to create the alert dialog. val dialogBuilder = AlertDialog.Builder(requireContext(), R.style.PrivacyBrowserAlertDialog) - // Get the current theme status. - val currentThemeStatus = resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK - // Configure the dialog according to the save type. when (saveType) { SAVE_URL -> { @@ -130,11 +126,7 @@ class SaveWebpageDialog : DialogFragment() { dialogBuilder.setTitle(R.string.save_url) // Set the icon according to the theme. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - dialogBuilder.setIcon(R.drawable.copy_enabled_day) - } else { - dialogBuilder.setIcon(R.drawable.copy_enabled_night) - } + dialogBuilder.setIconAttribute(R.attr.copyBlueIcon) } SAVE_ARCHIVE -> { @@ -142,11 +134,7 @@ class SaveWebpageDialog : DialogFragment() { dialogBuilder.setTitle(R.string.save_archive) // Set the icon according to the theme. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - dialogBuilder.setIcon(R.drawable.dom_storage_cleared_day) - } else { - dialogBuilder.setIcon(R.drawable.dom_storage_cleared_night) - } + dialogBuilder.setIconAttribute(R.attr.domStorageBlueIcon) // Convert the URL to a URI. val uri = Uri.parse(originalUrlString) @@ -160,11 +148,7 @@ class SaveWebpageDialog : DialogFragment() { dialogBuilder.setTitle(R.string.save_image) // Set the icon according to the theme. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - dialogBuilder.setIcon(R.drawable.images_enabled_day) - } else { - dialogBuilder.setIcon(R.drawable.images_enabled_night) - } + dialogBuilder.setIconAttribute(R.attr.imagesBlueIcon) // Convert the URL to a URI. val uri = Uri.parse(originalUrlString)