Reputation: 7809
I'm wondering how to achieve the nice scroll past top functionality, that then updates the contents of the listview.
Do I have to do a custom ListView or is there some kind of built-in functionality?
Thanks
Upvotes: 1
Views: 1117
Reputation: 4403
There is no such functionality out of the box on Android. However there are some implementations of the "Pull to Refresh" feature on Internet. You can try code from Chris Banes: Pull To Refresh
Upvotes: 1