fixed arrow coloring on the pull to refresh on the file list

This commit is contained in:
Andy Scherzinger 2015-08-13 19:28:44 +02:00
parent 1c7de5c7a5
commit 414f43f326

View file

@ -338,9 +338,9 @@ public class ExtendedListFragment extends Fragment
}
private void onCreateSwipeToRefresh(SwipeRefreshLayout refreshLayout) {
// Colors in animations: background
refreshLayout.setColorScheme(R.color.background_color, R.color.background_color,
R.color.background_color, R.color.background_color);
// Colors in animations
refreshLayout.setColorSchemeResources(R.color.color_accent, R.color.primary,
R.color.primary_dark);
refreshLayout.setOnRefreshListener(this);
}