How can I create a list where when you reach the end of the list I am notified so I can load more items?
|
|
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). |
|||||||||||||||||||||
|
|
Just wanted to contribute a solution that I used for my app. It is also based on the
|
||||
|
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) |
|||||||||
|
|
ListAdaptor should do exactly what you want. It represents a virtual list of items that only need to be loaded in as they are needed. |
|||||||||||
|
|
I've been working in another solution very similar to that, but, I am using a footerView to give the possibility to the user download more elements clicking the footerView, I am using a "menu" wich is shown above the ListView and in the bottom of the parent view, this "menu" hides the bottom of the ListView, so, when the listView is scrolling the menu disappear and when scroll state is idle, the menu appear again, but when the user scrolls to the end of the listView, I "ask" to know if the footerView is shown in that case, the menu doesn't appear and the user can see the footerView to load more content. Here the code: Regards.
|
|||
|
|
protected by Raghav Sood Feb 7 at 17:55
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.