X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FHttpAuthenticationDialog.kt;h=dca6032dc74abe26f574139166fcc057e3db8495;hp=7c94fcfbfdd72f52a2df00054dbea60cd0fee0ec;hb=9cb208c1f5c7a905f787f4ec4795a92e72195fba;hpb=c6dbd16598906207cb5058e380da126185fd0006 diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/HttpAuthenticationDialog.kt b/app/src/main/java/com/stoutner/privacybrowser/dialogs/HttpAuthenticationDialog.kt index 7c94fcfb..dca6032d 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/HttpAuthenticationDialog.kt +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/HttpAuthenticationDialog.kt @@ -108,16 +108,8 @@ class HttpAuthenticationDialog: DialogFragment() { // Use an alert dialog builder to create the alert dialog. val dialogBuilder = AlertDialog.Builder(requireActivity(), R.style.PrivacyBrowserAlertDialog) - // Get the current theme status. - val currentThemeStatus = resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK - // Set the icon according to the theme. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - dialogBuilder.setIcon(R.drawable.lock_day) - } else { - - dialogBuilder.setIcon(R.drawable.lock_night) - } + dialogBuilder.setIconAttribute(R.attr.lockBlueIcon) // Set the title. dialogBuilder.setTitle(R.string.http_authentication) @@ -180,6 +172,9 @@ class HttpAuthenticationDialog: DialogFragment() { val hostLabel = getString(R.string.host) + " " val hostStringBuilder = SpannableStringBuilder(hostLabel + httpAuthHost) + // Get the current theme status. + val currentThemeStatus = resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK + // Create a blue foreground color span. val blueColorSpan: ForegroundColorSpan