[Solved] How to reduce time of the parsing and inserting into database when there is bulky data on web in android? [closed]


If you really want to parse and store into the database so better way is to load in some range like 0-50-100-150 or 0-100-200.

So You can achieve this by using ListView with load Button. You can make it like it will load automatically while scrolling to position say 50 or 100 what ever its up to you.

Or else you while scrolling the a footer will be added to the ListView at the end i.e say 50 0r 100.

For reference go through the following link.

https://github.com/shontauro/android-pulltorefresh-and-loadmore

http://www.androidhive.info/2012/03/android-listview-with-load-more-button/

Hope this will help you to achieve your requirement.

Many Thanks.

1

solved How to reduce time of the parsing and inserting into database when there is bulky data on web in android? [closed]