Adding Swipe-to-Refresh To Your App

Updated 14 December 2016

Save

This blog will give you a basic overview about the SwipeRefreshLayout.

SwipeRefreshLayout as the name suggest refreshes the content of a view (mostly View’s that this Layout hold) via vertical swipe gesture.

 

Let us Add the SwipeRefreshLayout Widget for our layout

Yes, That’s simple. Just wrap your view by SwipeRefreshLayout.

 

interface OnRefreshListener (SwipeRefreshLayout.OnRefreshListener)

Classes that wish to be notified when the swipe gesture correctly triggers a refresh should implement this interface.

The activity/fragment that instantiates this view should add an OnRefreshListener to be notified whenever the swipe to refresh gesture is completed. The SwipeRefreshLayout will notify the listener (OnRefreshListener) each and every time the gesture is completed again; the listener is responsible for correctly determining when to actually initiate a refresh of its content.

call setRefreshing(false) to cancel any visual indication of a refresh.

To disable the gesture and progress animation, call setEnabled(false) on the view.

 

Respond to the Refresh Gesture

 

Here is a sample of our SwipeRefreshLayout used in our Mobikul Application.

swipe_refresh_layout

 

That’s all folks. #Stay_hungry_stay_foolish

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home