From: masensio Date: Tue, 3 Jun 2014 09:43:10 +0000 (+0200) Subject: Fix: animations should be gone. Color default animations is background_color X-Git-Tag: oc-android-1.7.0_signed~292^2~1 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/4cd7d88322c791f2cf05dc9a327d80617db7f2b3 Fix: animations should be gone. Color default animations is background_color --- 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;