]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/java/com/stoutner/privacybrowser/dialogs/SslCertificateErrorDialog.kt
Add Night Theme dual tone blue text. https://redmine.stoutner.com/issues/878
[PrivacyBrowserAndroid.git] / app / src / main / java / com / stoutner / privacybrowser / dialogs / SslCertificateErrorDialog.kt
index d146de5300c77c364ce7695e148d18e087561f54..1179c29e59502d0e8948d04998533b0337c3d511 100644 (file)
@@ -226,7 +226,7 @@ class SslCertificateErrorDialog : DialogFragment() {
         val endDateStringBuilder = SpannableStringBuilder(endDateLabel + endDate)
 
         // Define the color spans.
-        val blueColorSpan = ForegroundColorSpan(requireContext().getColor(R.color.blue_text))
+        val blueColorSpan = ForegroundColorSpan(requireContext().getColor(R.color.alt_blue_text))
         val redColorSpan = ForegroundColorSpan(requireContext().getColor(R.color.red_text))
 
         // Setup the spans to display the certificate information in blue.  `SPAN_INCLUSIVE_INCLUSIVE` allows the span to grow in either direction.
@@ -322,6 +322,7 @@ class SslCertificateErrorDialog : DialogFragment() {
         private val activityWeakReference: WeakReference<Activity> = WeakReference(activity)
         private val alertDialogWeakReference: WeakReference<AlertDialog> = WeakReference(alertDialog)
 
+        @Deprecated("Deprecated in Java")
         override fun doInBackground(vararg domainName: String): SpannableStringBuilder {
             // Get handles for the activity and the alert dialog.
             val activity = activityWeakReference.get()
@@ -362,7 +363,7 @@ class SslCertificateErrorDialog : DialogFragment() {
             val ipAddressesStringBuilder = SpannableStringBuilder(ipAddressesLabel + ipAddresses)
 
             // Create a blue color span according to the theme.
-            val blueColorSpan = ForegroundColorSpan(activity.getColor(R.color.blue_text))
+            val blueColorSpan = ForegroundColorSpan(activity.getColor(R.color.alt_blue_text))
 
             // Set the string builder to display the certificate information in blue.  `SPAN_INCLUSIVE_INCLUSIVE` allows the span to grow in either direction.
             ipAddressesStringBuilder.setSpan(blueColorSpan, ipAddressesLabel.length, ipAddressesStringBuilder.length, Spanned.SPAN_INCLUSIVE_INCLUSIVE)
@@ -372,6 +373,7 @@ class SslCertificateErrorDialog : DialogFragment() {
         }
 
         // `onPostExecute()` operates on the UI thread.
+        @Deprecated("Deprecated in Java")
         override fun onPostExecute(ipAddresses: SpannableStringBuilder) {
             // Get handles for the activity and the alert dialog.
             val activity = activityWeakReference.get()