How can I create a list where when you reach the end of the list I am notified so I can load more items?
Thanks,
Isaac
feedback
|
|
One solution is to implement an The following
You should obviously use separate threads for long running actions (like loading web-data) and might want to indicate progress in the last list item (like the market or gmail apps do). | |||||||||||||||||||||
feedback
|
|
You can detect end of the list with help of onScrollListener, working code is presented below:
Another way to do that (inside adapter) is as following:
Be aware that this method will be called many times, so you need to add another condition to block multiple calls of When you add all elements to the list, please call notifyDataSetChanged() inside yours adapter to update the View (it should be run on UI thread - runOnUiThread) | |||||||
feedback
|
|
I recommend CommonWare's EndlessAdapter: http://github.com/commonsguy/cwac-endless. I found it from this answer to another question: Android: Implementing Endless List like Android Market. | |||
|
feedback
|
|
Doesn't a ListAdaptor do exactly what you want? It represents a virtual list of items that only need to be loaded in as they are needed. | |||||||||||
feedback
|
|
Look at this article please. It has ready to use solution with custom adapter. http://codinglines.frankiv.me/post/14552677846/android-implementing-a-dynamically-loading-adapter | |||
|
feedback
|