simple example on how to use SwipeRefreshLayout with ListView

巧了我就是萌 提交于 2019-12-18 22:35:22

问题


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.


回答1:


Call the method setRefreshing(false)

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




回答2:


Or you could just use this beautiful gist here.

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

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



来源:https://stackoverflow.com/questions/22738522/simple-example-on-how-to-use-swiperefreshlayout-with-listview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!