Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I create a list where when you reach the end of the list I am notified so I can load more items?

share|improve this question
5  
I recommend CommonWare's EndlessAdapter: github.com/commonsguy/cwac-endless. I found it from this answer to another question: stackoverflow.com/questions/4667064/…. – Tyler Collier Jun 7 '11 at 5:25

5 Answers

up vote 154 down vote accepted

One solution is to implement an OnScrollListener and make changes (like adding items, etc.) to the ListAdapter at a convenient state in its onScroll method.

The following ListActivity shows a list of integers, starting with 40, adding items when the user scrolls to the end of the list.

public class Test extends ListActivity implements OnScrollListener {

    Aleph0 adapter = new Aleph0();

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setListAdapter(adapter); 
        getListView().setOnScrollListener(this);
    }

    public void onScroll(AbsListView view,
        int firstVisible, int visibleCount, int totalCount) {

        boolean loadMore = /* maybe add a padding */
            firstVisible + visibleCount >= totalCount;

        if(loadMore) {
            adapter.count += visibleCount; // or any other amount
            adapter.notifyDataSetChanged();
        }
    }

    public void onScrollStateChanged(AbsListView v, int s) { }    

    class Aleph0 extends BaseAdapter {
        int count = 40; /* starting amount */

        public int getCount() { return count; }
        public Object getItem(int pos) { return pos; }
        public long getItemId(int pos) { return pos; }

        public View getView(int pos, View v, ViewGroup p) {
                TextView view = new TextView(Test.this);
                view.setText("entry " + pos);
                return view;
        }
    }
}

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).

share|improve this answer
1  
Thanks, this works perfectly. – Isaac Waller Jul 4 '09 at 18:53
3  
huh, wouldn't this trigger the adapter size increase if you'd stop scrolling in the middle of the screen? it should only load the next 10 when actually reaching the list bottom. – Matthias Aug 5 '10 at 10:13
3  
@Matthias you are absolutely right, I modified the code accordingly. Thanks for the feedback! – Josef Aug 8 '10 at 19:59
2  
cool, now it looks pretty much like the solution we use -- thanks :-) – Matthias Aug 9 '10 at 10:06
5  
I notice a lot of examples like this using BaseAdapter. Wanted to mention that if you're using a database, try using a SimpleCursorAdapter. When you need to add to the list, update your database, get a new cursor, and use SimpleCursorAdapter#changeCursor along with notifyDataSetChanged. No subclassing required, and it performs better than a BaseAdapter(again, only if you're using a database). – brack Oct 20 '10 at 18:51
show 5 more comments

Just wanted to contribute a solution that I used for my app.

It is also based on the OnScrollListener interface, but I found it to have a much better scrolling performance on low-end devices, since none of the visible/total count calculations are carried out during the scroll operations.

  1. Let your ListFragment or ListActivity implement OnScrollListener
  2. Add the following methods to that class:

    @Override
    public void onScroll(AbsListView view, int firstVisibleItem,
            int visibleItemCount, int totalItemCount) {
        //leave this empty
    }
    
    @Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
        if (scrollState == SCROLL_STATE_IDLE) {
            if (listView.getLastVisiblePosition() >= listView.getCount() - threshold) {
                currentPage++;
                //load more list items:
                loadElements(currentPage);
            }
        }
    }
    

    where currentPage is the page of your datasource that should be added to your list, and threshold is the number of list items (counted from the end) that should, if visible, trigger the loading process. If you set threshold to 0, for instance, the user has to scroll to the very end of the list in order to load more items.

  3. (optional) As you can see, the "load-more check" is only called when the user stops scrolling. To improve usability, you may inflate and add a loading indicator to the end of the list via listView.addFooterView(yourFooterView). One example for such a footer view:

    <?xml version="1.0" encoding="utf-8"?>
    
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/footer_layout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="10dp" >
    
        <ProgressBar
            android:id="@+id/progressBar1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_gravity="center_vertical" />
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_toRightOf="@+id/progressBar1"
            android:padding="5dp"
            android:text="@string/loading_text" />
    
    </RelativeLayout>
    
  4. (optional) Finally, remove that loading indicator by calling listView.removeFooterView(yourFooterView) if there are no more items or pages.

share|improve this answer
1  
By far the easiest one to implement for a simple solution. Took 10 minutes and I'm a beginner. +1 – Onimusha Mar 3 at 18:59
Helps me a lot. Thanks – Youngjae Apr 16 at 16:41

You can detect end of the list with help of onScrollListener, working code is presented below:

@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
    if (view.getAdapter() != null && ((firstVisibleItem + visibleItemCount) >= totalItemCount) && totalItemCount != mPrevTotalItemCount) {
        Log.v(TAG, "onListEnd, extending list");
        mPrevTotalItemCount = totalItemCount;
        mAdapter.addMoreData();
    }
}

Another way to do that (inside adapter) is as following:

    public View getView(int pos, View v, ViewGroup p) {
            if(pos==getCount()-1){
                addMoreData(); //should be asynctask or thread
            }
            return view;
    }

Be aware that this method will be called many times, so you need to add another condition to block multiple calls of addMoreData().

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)

share|improve this answer
Edit: added getView() method – darbat Aug 2 '10 at 11:58
4  
It is bad practice to do other stuff than returning a view in getView. For example, you aren't guaranteed that pos is viewed by the user. It might simply be ListView measuring stuff. – Thomas Ahle Aug 13 '11 at 10:10
I want to load more items after 10 items are scrolled. but I notice that loading starts before 10th item is visible means on 9th item.So how to stop this? – Atul Bhardwaj Oct 31 '12 at 6:44

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.

share|improve this answer
6  
ListAdapter needs to know the full count up front, and most such adapters are set up to wrap the full content (e.g., CursorAdapter wraps a Cursor, which holds the full result set of a query). My guess is that Isaac is interested in putting an Android front-end on a Web service API that uses paging, so you don't necessarily know how many there are up front and need to do an HTTP fetch each time to get a new batch. – CommonsWare Jul 4 '09 at 14:59
1  
I think the list adaptor can change it's size (or data set). So when it is asked for the last item it triggers off a fetch. Obviously from a UI point of view this is bad. You should be trying to hide the latency from the user by fetching before the user gets to the end. – hacken Jul 5 '09 at 0:47
This was my first idea, but it does seem messy - a ListView will sometimes request the last item much before it is needed. – Isaac Waller Jul 5 '09 at 18:48

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.

        listView.setOnScrollListener(new OnScrollListener() {

        @Override
        public void onScrollStateChanged(AbsListView view, int scrollState) {
            // TODO Auto-generated method stub
            if(scrollState == SCROLL_STATE_IDLE)
            {
                if(footerView.isShown())
                    bottomView.setVisibility(LinearLayout.INVISIBLE);
                else
                    bottomView.setVisibility(LinearLayout.VISIBLE);
            }else{
                bottomView.setVisibility(LinearLayout.INVISIBLE);
            }
        }

        @Override
        public void onScroll(AbsListView view, int firstVisibleItem,
                int visibleItemCount, int totalItemCount) {

        }
    });
share|improve this answer

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.