Skip to content Skip to sidebar Skip to footer

Endless Scrolling For Listview

I have a listview utilizing a custom adapter, now I want it to show the first five entries and load the others when I scroll down, what's the simplest way to do this? If my code fo

Solution 1:

If you load your items from network(so time delay is expected), check this library project : https://github.com/chrisbanes/Android-PullToRefresh

This is an awesome pull-to-refresh listview project, but it also provides pull to refresh from bottom. So you can use that feature to load more items. But this feature need explicit pull action from user.

Solution 2:

Post a Comment for "Endless Scrolling For Listview"