X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fadapters%2FRequestsArrayAdapter.java;h=d253307d30cdb5d6b67429eb72cb1a295b95a51a;hp=c1e2ee8463368c93e1d8c195f84da0f8f5a0ca9c;hb=f441c077da729e1d3d97c9efb46e8380a0730dd9;hpb=1243964145685f9496b119e71d776efe0e668d5b diff --git a/app/src/main/java/com/stoutner/privacybrowser/adapters/RequestsArrayAdapter.java b/app/src/main/java/com/stoutner/privacybrowser/adapters/RequestsArrayAdapter.java index c1e2ee84..d253307d 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/adapters/RequestsArrayAdapter.java +++ b/app/src/main/java/com/stoutner/privacybrowser/adapters/RequestsArrayAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright © 2018-2022 Soren Stoutner . + * Copyright 2018-2022 Soren Stoutner . * * This file is part of Privacy Browser Android . * @@ -20,7 +20,6 @@ package com.stoutner.privacybrowser.adapters; import android.content.Context; -import android.content.res.Configuration; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; @@ -66,9 +65,6 @@ public class RequestsArrayAdapter extends ArrayAdapter { // The ID is one greater than the position because it is 0 based. int id = position + 1; - // Get the current theme status. - int currentThemeStatus = context.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; - // Set the action text and the background color. switch (entryStringArray[0]) { case BlocklistHelper.REQUEST_DEFAULT: @@ -90,11 +86,7 @@ public class RequestsArrayAdapter extends ArrayAdapter { dispositionTextView.setText(requestAllowed); // Set the background color. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - linearLayout.setBackgroundColor(context.getColor(R.color.blue_100)); - } else { - linearLayout.setBackgroundColor(context.getColor(R.color.blue_700_50)); - } + linearLayout.setBackgroundColor(context.getColor(R.color.blue_background)); break; case BlocklistHelper.REQUEST_THIRD_PARTY: @@ -105,11 +97,7 @@ public class RequestsArrayAdapter extends ArrayAdapter { dispositionTextView.setText(requestThirdParty); // Set the background color. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - linearLayout.setBackgroundColor(context.getColor(R.color.yellow_100)); - } else { - linearLayout.setBackgroundColor(context.getColor(R.color.yellow_700_50)); - } + linearLayout.setBackgroundColor(context.getColor(R.color.yellow_background)); break; @@ -121,11 +109,7 @@ public class RequestsArrayAdapter extends ArrayAdapter { dispositionTextView.setText(requestBlocked); // Set the background color. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - linearLayout.setBackgroundColor(context.getColor(R.color.red_100)); - } else { - linearLayout.setBackgroundColor(context.getColor(R.color.red_700_40)); - } + linearLayout.setBackgroundColor(context.getColor(R.color.red_background)); break; } @@ -135,4 +119,4 @@ public class RequestsArrayAdapter extends ArrayAdapter { // Return the modified view. return view; } -} \ No newline at end of file +}