change the color of all SwipeRefreshLayouts to match the Tusky theme

This commit is contained in:
Conny Duck 2018-03-09 20:39:08 +01:00
commit 4e617dccc7
4 changed files with 9 additions and 1 deletions

View file

@ -96,6 +96,8 @@ public class ViewThreadFragment extends SFragment implements
Context context = getContext();
swipeRefreshLayout = rootView.findViewById(R.id.swipe_refresh_layout);
swipeRefreshLayout.setOnRefreshListener(this);
swipeRefreshLayout.setColorSchemeResources(R.color.primary);
swipeRefreshLayout.setProgressBackgroundColorSchemeColor(ThemeUtils.getColor(context, android.R.attr.colorBackground));
recyclerView = rootView.findViewById(R.id.recycler_view);
recyclerView.setHasFixedSize(true);