Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

simple example on how to use SwipeRefreshLayout with ListView

Does anyone have a simple example on how to use SwipeRefreshLayout with a ListView? Here is my situation:

I have a class SynchDogs that pulls data from the server. So that class serves as the source for my adapter. I want to use SwipeRefreshLayout for refreshing the adapter and so the ListView. DogActivity is an Observer of SynchDogs so that DogActivity implements an update method that is called when new data is ready.

So I implement onRefresh as

@Override
public void onRefresh() {
    SynchDogs.getInstance().synchronizeWithServer();
}

So I am supposing this is all I need to initiate the start of pull-to-refresh. If so, inside update what do I do to end the call?

I also already have

swipeLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_container);
swipeLayout.setOnRefreshListener(this);
swipeLayout.setColorScheme(android.R.color.holo_blue_bright, 
        android.R.color.holo_green_light, 
        android.R.color.holo_orange_light, 
        android.R.color.holo_red_light);

update

Basically, I want to know the call for stopping the color show.

like image 905
Katedral Pillon Avatar asked Mar 29 '14 23:03

Katedral Pillon


2 Answers

Call the method setRefreshing(false)

http://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html#setRefreshing(boolean)

like image 177
KennyC Avatar answered Nov 07 '22 20:11

KennyC


Or you could just use this beautiful gist here.

Gist - https://gist.github.com/antoniolg/9837398

Blog - http://antonioleiva.com/swiperefreshlayout/

like image 39
mipreamble Avatar answered Nov 07 '22 21:11

mipreamble