I have a URL which loads about 500 records of data which is taking lot of time to download and display in Listview. I would like use lazy loading to display the data but since when i call the asynchronous task the url gets called and it fetches all the data.but i would like to display first few record and then when scrolled should load the next records.please kindly let me know the logic to acheive this.
Thanks in advance.
there is alooot of solutions to resolve this problem.
I have for my self a couple of them:
1) LazyList this is a good example
2) I use AQuery to resolve the lazy and asynchronous issues.