Implement onRefresh method for SwipeRefreshLayout
[pub/Android/ownCloud.git] / src / com / owncloud / android / ui / fragment / ExtendedListFragment.java
index 915e455..8b54555 100644 (file)
@@ -147,6 +147,20 @@ public class ExtendedListFragment extends SherlockFragment implements OnItemClic
     public void disableSwipe() {
         mRefreshLayout.setEnabled(false);
     }
+    
+    /**
+     * It shows the SwipeRefreshLayout progress
+     */
+    public void showSwipeProgress() {
+        mRefreshLayout.setRefreshing(true);
+    }
+    /**
+     * It shows the SwipeRefreshLayout progress
+     */
+    public void hideSwipeProgress() {
+        mRefreshLayout.setRefreshing(false);
+    }
  
     
 }