Fixed swipe refresh color for accounts/folders

pull/215/head
M66B 4 months ago
parent dd59808d30
commit c43dbbd294

@ -124,8 +124,9 @@ public class FragmentAccounts extends FragmentBase {
// Wire controls
int c = Helper.resolveColor(getContext(), R.attr.colorInfoForeground);
swipeRefresh.setColorSchemeColors(c, c, c);
int colorPrimary = Helper.resolveColor(getContext(), androidx.appcompat.R.attr.colorPrimary);
swipeRefresh.setColorSchemeColors(Color.WHITE, Color.WHITE, Color.WHITE);
swipeRefresh.setProgressBackgroundColorSchemeColor(colorPrimary);
swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override

@ -190,8 +190,9 @@ public class FragmentFolders extends FragmentBase {
final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getContext());
int c = Helper.resolveColor(getContext(), R.attr.colorInfoForeground);
swipeRefresh.setColorSchemeColors(c, c, c);
int colorPrimary = Helper.resolveColor(getContext(), androidx.appcompat.R.attr.colorPrimary);
swipeRefresh.setColorSchemeColors(Color.WHITE, Color.WHITE, Color.WHITE);
swipeRefresh.setProgressBackgroundColorSchemeColor(colorPrimary);
swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override

Loading…
Cancel
Save