From 4cd7d88322c791f2cf05dc9a327d80617db7f2b3 Mon Sep 17 00:00:00 2001 From: masensio Date: Tue, 3 Jun 2014 11:43:10 +0200 Subject: [PATCH] Fix: animations should be gone. Color default animations is background_color --- src/com/owncloud/android/ui/fragment/ExtendedListFragment.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java b/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java index 8a017b54..5915ab42 100644 --- a/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java +++ b/src/com/owncloud/android/ui/fragment/ExtendedListFragment.java @@ -76,6 +76,10 @@ public class ExtendedListFragment extends SherlockFragment implements OnItemClic // Pull down refresh mRefreshLayout = (SwipeRefreshLayout) v.findViewById(R.id.swipe_refresh_files); + // Colors in animations: background + mRefreshLayout.setColorScheme(R.color.background_color, R.color.background_color, + R.color.background_color, R.color.background_color); + mRefreshLayout.setOnRefreshListener(this); return v; -- 2.11.0