From: Andy Scherzinger Date: Thu, 13 Aug 2015 17:28:44 +0000 (+0200) Subject: fixed arrow coloring on the pull to refresh on the file list X-Git-Tag: beta-20151128~7^2~56 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/414f43f3264b76c8a8fe8a63fb1bbb2090dc97cd?ds=sidebyside fixed arrow coloring on the pull to refresh on the file list --- diff --git a/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java b/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java index 941654b2..937a50d0 100644 --- a/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java +++ b/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java @@ -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); }