I have a activity which showing the 20 items in listview, at bottom list view has a footerview as “Load more results when we clicked the load more it should add next 20 results on it, this is working fine.
But after clicking on load more the whole page get refreshed and it is showing from the top.
while it should show items from current position. Is there any method????
The data is coming from the parsing.
Thanx
You have to keep a global counter in where your
ListViewknows where your counter (or index) is. Simply increment the counter when adding a new item from the parsing data. When theListViewdynamically downloads more items, you should put in your counter into the parsing process so you just download new data.