Find out if ListView is scrolled to the bottom?

AndroidListview

Android Problem Overview


Can I find out if my ListView is scrolled to the bottom? By that I mean that the last item is fully visible.

Android Solutions


Solution 1 - Android

Edited:

Since I have been investigating in this particular subject in one of my applications, I can write an extended answer for future readers of this question.

Implement an OnScrollListener, set your ListView's onScrollListener and then you should be able to handle things correctly.

For example:

private int preLast;
// Initialization stuff.
yourListView.setOnScrollListener(this);

// ... ... ...
   
@Override
public void onScroll(AbsListView lw, final int firstVisibleItem,
        final int visibleItemCount, final int totalItemCount)
{

    switch(lw.getId()) 
    {
        case R.id.your_list_id:	    
	
            // Make your calculation stuff here. You have all your
            // needed info from the parameters of this function.
    
            // Sample calculation to determine if the last 
            // item is fully visible.
            final int lastItem = firstVisibleItem + visibleItemCount;
	        
            if(lastItem == totalItemCount)
            {
	            if(preLast!=lastItem)
                {
                    //to avoid multiple calls for last item
	                Log.d("Last", "Last");
	                preLast = lastItem;
	            }
	        }
    }
}

Solution 2 - Android

Late answer, but if you simply wish to check whether your ListView is scrolled all the way down or not, without creating an event listener, you can use this if-statement:

if (yourListView.getLastVisiblePosition() == yourListView.getAdapter().getCount() -1 &&
	yourListView.getChildAt(yourListView.getChildCount() - 1).getBottom() <= yourListView.getHeight())
{
	//It is scrolled all the way down here
	
}

First it checks if the last possible position is in view. Then it checks if the bottom of the last button aligns with the bottom of the ListView. You can do something similar to know if it's all the way at the top:

if (yourListView.getFirstVisiblePosition() == 0 &&
	yourListView.getChildAt(0).getTop() >= 0)
{
	//It is scrolled all the way up here
	
}

Solution 3 - Android

The way I did it:

listView.setOnScrollListener(new AbsListView.OnScrollListener() {

    @Override
    public void onScrollStateChanged(AbsListView view, int scrollState) {
	    if (scrollState == AbsListView.OnScrollListener.SCROLL_STATE_IDLE 
			&& (listView.getLastVisiblePosition() - listView.getHeaderViewsCount() -
			listView.getFooterViewsCount()) >= (adapter.getCount() - 1)) {

		// Now your listview has hit the bottom
	    }
    }

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

    }
});

Solution 4 - Android

Something to the effect of:

if (getListView().getLastVisiblePosition() == (adapter.items.size() - 1))

Solution 5 - Android

public void onScrollStateChanged(AbsListView view, int scrollState)        
{
    if (!view.canScrollList(View.SCROLL_AXIS_VERTICAL) && scrollState == SCROLL_STATE_IDLE)    
    {
        //When List reaches bottom and the list isn't moving (is idle)
    }
}

This worked for me.

Solution 6 - Android

This can be

            @Override
			public void onScrollStateChanged(AbsListView view, int scrollState) {
				// TODO Auto-generated method stub

				if (scrollState == 2)
					flag = true;
				Log.i("Scroll State", "" + scrollState);
			}

			@Override
			public void onScroll(AbsListView view, int firstVisibleItem,
					int visibleItemCount, int totalItemCount) {
				// TODO Auto-generated method stub
				if ((visibleItemCount == (totalItemCount - firstVisibleItem))
						&& flag) {
					flag = false;
					
					
					
					Log.i("Scroll", "Ended");
				}
			}

Solution 7 - Android

canScrollVertically(int direction) works for all Views, and seems to do what you asked, with less code than most of the other answers. Plug in a positive number, and if the result is false, you're at the bottom.

ie:

if (!yourView.canScrollVertically(1)) { //you've reached bottom }

Solution 8 - Android

It was pretty painful to deal with scrolling, detecting when it is finished and it is indeed at the bottom of the list (not bottom of the visible screen), and triggers my service only once, to fetch data from the web. However it is working fine now. The code is as follows for the benefit of anybody who faces the same situation.

NOTE: I had to move my adapter related code into onViewCreated instead of onCreate and detect scrolling primarily like this:

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

public void onScrollStateChanged(AbsListView view, int scrollState) {
	if (getListView().getLastVisiblePosition() == (adapter.getCount() - 1))
		if (RideListSimpleCursorAdapter.REACHED_THE_END) {
    		Log.v(TAG, "Loading more data");
			RideListSimpleCursorAdapter.REACHED_THE_END = false;
			Intent intent = new Intent(getActivity().getApplicationContext(), FindRideService.class);
			getActivity().getApplicationContext().startService(intent);
		}
}

Here RideListSimpleCursorAdapter.REACHED_THE_END is an additional variable in my SimpleCustomAdapter which is set like this:

if (position == getCount() - 1) {
      REACHED_THE_END = true;
    } else {
      REACHED_THE_END = false;
    }

Only when both of these conditions meet, it means that I am indeed at the bottom of the list, and that my service will run only once. If I don't catch the REACHED_THE_END, even scrolling backwards triggers the service again, as long as the last item is in view.

Solution 9 - Android

To expand a bit on one of the above answers, this is what I had to do to get it working completely. There seems to be about 6dp of built-in padding inside of ListViews, and onScroll() was being called when the list was empty. This handles both of those things. It could probably be optimized a bit, but is written more for clarity.

Side note: I've tried several different dp to pixel conversion techniques, and this dp2px() one has been the best.

myListView.setOnScrollListener(new OnScrollListener() {
	public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
		if (visibleItemCount > 0) {
			boolean atStart = true;
			boolean atEnd = true;

			View firstView = view.getChildAt(0);
			if ((firstVisibleItem > 0) ||
					((firstVisibleItem == 0) && (firstView.getTop() < (dp2px(6) - 1)))) {
				// not at start
				atStart = false;
			}

			int lastVisibleItem = firstVisibleItem + visibleItemCount;
			View lastView = view.getChildAt(visibleItemCount - 1);
			if ((lastVisibleItem < totalItemCount) ||
					((lastVisibleItem == totalItemCount) &&
							((view.getHeight() - (dp2px(6) - 1)) < lastView.getBottom()))
					) {
	            		// not at end
		        	atEnd = false;
		        }

			// now use atStart and atEnd to do whatever you need to do
			// ...
		}
	}
	public void onScrollStateChanged(AbsListView view, int scrollState) {
	}
});

private int dp2px(int dp) {
	return (int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, getResources().getDisplayMetrics());
}

Solution 10 - Android

I can't comment yet because I haven't got enough reputation, but in @Ali Imran and @Wroclai 's answer I think something is missing. With that piece of code, once you update preLast, it will never execute the Log again. In my specific problem, I want to execute some operation every time I scroll to the bottom, but once preLast is updated to LastItem, that operation is never executed again.

private int preLast;
// Initialization stuff.
yourListView.setOnScrollListener(this);

// ... ... ...

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

switch(lw.getId()) {
    case android.R.id.list:     

        // Make your calculation stuff here. You have all your
        // needed info from the parameters of this function.

        // Sample calculation to determine if the last 
        // item is fully visible.
         final int lastItem = firstVisibleItem + visibleItemCount;
       if(lastItem == totalItemCount) {
          if(preLast!=lastItem){ //to avoid multiple calls for last item
            Log.d("Last", "Last");
            preLast = lastItem;
          }
       } else {
            preLast = lastItem;
}

}

With that "else" you're now able to execute your code (Log, in this case) every time you scroll to the bottom once again.

Solution 11 - Android

public void onScroll(AbsListView view, int firstVisibleItem,
                         int visibleItemCount, int totalItemCount) {
        int lastindex = view.getLastVisiblePosition() + 1;
        
        if (lastindex == totalItemCount) { //showing last row
            if ((view.getChildAt(visibleItemCount - 1)).getTop() == view.getHeight()) {
                //Last row fully visible
            }
        }
    }

Solution 12 - Android

For your list to call when the list reach last and if an error happens, then this will not call the endoflistview again. This code will help this scenario as well.

@Override
public void onScroll(AbsListView view, int firstVisibleItem,
		int visibleItemCount, int totalItemCount) {
	final int lastPosition = firstVisibleItem + visibleItemCount;
	if (lastPosition == totalItemCount) {
		if (previousLastPosition != lastPosition) { 

			//APPLY YOUR LOGIC HERE
		}
		previousLastPosition = lastPosition;
	}
	else if(lastPosition < previousLastPosition - LIST_UP_THRESHOLD_VALUE){
		resetLastIndex();
	}
}

public void resetLastIndex(){
	previousLastPosition = 0;
}

where the LIST_UP_THRESHOLD_VALUE can be any integer value(I have used 5) where your list is scrolled up and while returning to the end, this will call the end of list view again.

Solution 13 - Android

I found a very nice way to automatically load the next page set in a way that doesn't require your own ScrollView (like the accepted answer requires).

On ParseQueryAdapter there is a method called getNextPageView that is there to allow you to supply your own custom view that appears at the end of the list when there is more data to load so it will only trigger when you have reached the end of you current page set (it's the "load more.." view by default). This method is only called when there is more data to load so it's a great place to call loadNextPage(); This way the adapter does all the hard work for you in determining when new data should be loaded and it won't be called at all if you have reached the end of the data set.

public class YourAdapter extends ParseQueryAdapter<ParseObject> {

..

@Override
public View getNextPageView(View v, ViewGroup parent) {
   loadNextPage();
   return super.getNextPageView(v, parent);
  }

}

Then inside your activity/fragment you just have to set the adapter and new data will be automatically updated for you like magic.

adapter = new YourAdapter(getActivity().getApplicationContext());
adapter.setObjectsPerPage(15);
adapter.setPaginationEnabled(true);
yourList.setAdapter(adapter);

Solution 14 - Android

To detect whether the last item is fully visible, you can simple add calculation on the view's last visible item's bottom by lastItem.getBottom().

yourListView.setOnScrollListener(this);   

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

	int vH = view.getHeight();
	int topPos = view.getChildAt(0).getTop();
	int bottomPos = view.getChildAt(visibleItemCount - 1).getBottom();

    switch(view.getId()) {
        case R.id.your_list_view_id:
            if(firstVisibleItem == 0 && topPos == 0) {
    			//TODO things to do when the list view scroll to the top
	        }

            if(firstVisibleItem + visibleItemCount == totalItemCount 
	            && vH >= bottomPos) {
    			//TODO things to do when the list view scroll to the bottom
        	}
            break;
    }
}

Solution 15 - Android

I went with:

@Override
public void onScroll(AbsListView listView, int firstVisibleItem, int visibleItemCount, int totalItemCount)
{
    if(totalItemCount - 1 == favoriteContactsListView.getLastVisiblePosition())
    {
        int pos = totalItemCount - favoriteContactsListView.getFirstVisiblePosition() - 1;
        View last_item = favoriteContactsListView.getChildAt(pos);
		
		//do stuff
	}
}

Solution 16 - Android

In the method getView() (of a BaseAdapter-derived class) one can check if position of the current view is equal to the list of items in the Adapter. If that is the case, then it means we've reached the end/bottom of the list:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
	// ...
	
	// detect if the adapter (of the ListView/GridView) has reached the end
	if (position == getCount() - 1) {
		// ... end of list reached
	}
}

Solution 17 - Android

I find a better way to detect listview scroll end the bottom, first detect scoll end by this
https://stackoverflow.com/questions/6358428/implementation-of-onscrolllistener-to-detect-the-end-of-scrolling-in-a-listview

 public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
    this.currentFirstVisibleItem = firstVisibleItem;
    this.currentVisibleItemCount = visibleItemCount;
}

public void onScrollStateChanged(AbsListView view, int scrollState) {
    this.currentScrollState = scrollState;
    this.isScrollCompleted();
 }

private void isScrollCompleted() {
    if (this.currentVisibleItemCount > 0 && this.currentScrollState == SCROLL_STATE_IDLE) {
        /*** In this way I detect if there's been a scroll which has completed ***/
        /*** do the work! ***/
    }
}

finally combine Martijn's answer

OnScrollListener onScrollListener_listview = new OnScrollListener() {		
		
		private int currentScrollState;
		private int currentVisibleItemCount;

		@Override
		public void onScrollStateChanged(AbsListView view, int scrollState) {
			// TODO Auto-generated method stub
			
			this.currentScrollState = scrollState;
		    this.isScrollCompleted();
		}
		
		@Override
		public void onScroll(AbsListView lw, int firstVisibleItem,
				int visibleItemCount, int totalItemCount) {
			// TODO Auto-generated method stub
		    this.currentVisibleItemCount = visibleItemCount;

		}
		
		private void isScrollCompleted() {
		    if (this.currentVisibleItemCount > 0 && this.currentScrollState == SCROLL_STATE_IDLE) {
		        /*** In this way I detect if there's been a scroll which has completed ***/
		        /*** do the work! ***/
		    	
				if (listview.getLastVisiblePosition() == listview.getAdapter().getCount() - 1
						&& listview.getChildAt(listview.getChildCount() - 1).getBottom() <= listview.getHeight()) {
					// It is scrolled all the way down here
					Log.d("henrytest", "hit bottom");
				}
		    	
		    	
		    }
		}
		
	};

Solution 18 - Android

Big thanks to posters in stackoverflow! I combined some ideas and created class listener for activities and fragments (so this code is more reusable making code faster to write and much cleaner).

All you have to do when you got my class is to implement interface (and of course create method for it) which is in declared in my class and create object of this class passing arguments.

/**
* Listener for getting call when ListView gets scrolled to bottom
*/
public class ListViewScrolledToBottomListener implements AbsListView.OnScrollListener {

ListViewScrolledToBottomCallback scrolledToBottomCallback;

private int currentFirstVisibleItem;
private int currentVisibleItemCount;
private int totalItemCount;
private int currentScrollState;

public interface ListViewScrolledToBottomCallback {
    public void onScrolledToBottom();
}

public ListViewScrolledToBottomListener(Fragment fragment, ListView listView) {
    try {
        scrolledToBottomCallback = (ListViewScrolledToBottomCallback) fragment;
        listView.setOnScrollListener(this);
    } catch (ClassCastException e) {
        throw new ClassCastException(fragment.toString()
                + " must implement ListViewScrolledToBottomCallback");
    }
}

public ListViewScrolledToBottomListener(Activity activity, ListView listView) {
    try {
        scrolledToBottomCallback = (ListViewScrolledToBottomCallback) activity;
        listView.setOnScrollListener(this);
    } catch (ClassCastException e) {
        throw new ClassCastException(activity.toString()
                + " must implement ListViewScrolledToBottomCallback");
    }
}

@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
    this.currentFirstVisibleItem = firstVisibleItem;
    this.currentVisibleItemCount = visibleItemCount;
    this.totalItemCount = totalItemCount;
}

@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
    this.currentScrollState = scrollState;
    if (isScrollCompleted()) {
        if (isScrolledToBottom()) {
            scrolledToBottomCallback.onScrolledToBottom();
        }
    }
}

private boolean isScrollCompleted() {
    if (this.currentVisibleItemCount > 0 && this.currentScrollState == SCROLL_STATE_IDLE) {
        return true;
    } else {
        return false;
    }
}

private boolean isScrolledToBottom() {
    System.out.println("First:" + currentFirstVisibleItem);
    System.out.println("Current count:" + currentVisibleItemCount);
    System.out.println("Total count:" + totalItemCount);
    int lastItem = currentFirstVisibleItem + currentVisibleItemCount;
    if (lastItem == totalItemCount) {
        return true;
    } else {
        return false;
    }
}
}

Solution 19 - Android

You need to add a empty xml footer resource to your listView and detect if this footer is visible.

    private View listViewFooter;
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_newsfeed, container, false);

        listView = (CardListView) rootView.findViewById(R.id.newsfeed_list);
        footer = inflater.inflate(R.layout.newsfeed_listview_footer, null);
        listView.addFooterView(footer);

        return rootView;
    }

Then in your listView scroll listener you do this

@
Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
  if (firstVisibleItem == 0) {
    mSwipyRefreshLayout.setDirection(SwipyRefreshLayoutDirection.TOP);
    mSwipyRefreshLayout.setEnabled(true);
  } else if (firstVisibleItem + visibleItemCount == totalItemCount) //If last row is visible. In this case, the last row is the footer.
  {
    if (footer != null) //footer is a variable referencing the footer view of the ListView. You need to initialize this onCreate
    {
      if (listView.getHeight() == footer.getBottom()) { //Check if the whole footer is visible.
        mSwipyRefreshLayout.setDirection(SwipyRefreshLayoutDirection.BOTTOM);
        mSwipyRefreshLayout.setEnabled(true);
      }
    }
  } else
    mSwipyRefreshLayout.setEnabled(false);
}

Solution 20 - Android

If you set a tag on a view of the last item of the listview, later you can retrieve the view with the tag, if the view is null it's because the view is not loaded anymore. Like this:

private class YourAdapter extends CursorAdapter {
    public void bindView(View view, Context context, Cursor cursor) {
          
         if (cursor.isLast()) {
			viewInYourList.setTag("last");
		 }
		 else{
			viewInYourList.setTag("notLast");
		 }

    }
}

then if you need to know if the last item is loaded

View last = yourListView.findViewWithTag("last");
if (last != null) {			      
   // do what you want to do
}

Solution 21 - Android

Janwilx72 is right,but it's min sdk is 21,so i create this method:

private boolean canScrollList(@ScrollOrientation int direction, AbsListView listView) {
    final int childCount = listView.getChildCount();
    if (childCount == 0) {
        return false;
    }

    final int firstPos = listView.getFirstVisiblePosition();
    final int paddingBottom = listView.getListPaddingBottom();
    final int paddingTop = listView.getListPaddingTop();
    if (direction > 0) {
        final int lastBottom = listView.getChildAt(childCount - 1).getBottom();
        final int lastPos    = firstPos + childCount;
        return lastPos < listView.getChildCount() || lastBottom > listView.getHeight() - paddingBottom;
    } else {
        final int firstTop = listView.getChildAt(0).getTop();
        return firstPos > 0 || firstTop < paddingTop;
    }
}

for ScrollOrientation:

protected static final int SCROLL_UP = -1;
protected static final int SCROLL_DOWN = 1;
@Retention(RetentionPolicy.SOURCE)
@IntDef({SCROLL_UP, SCROLL_DOWN})
protected @interface Scroll_Orientation{}

Maybe late, just for latecommers。

Solution 22 - Android

If you are using a custom adapter with your listview(most people do!) a beautiful solution is given here!

https://stackoverflow.com/a/55350409/1845404

The adapter's getView method detects when the list has been scrolled to the last item. It also adds correction for the rare times when some earlier position is called even after the adapter has already rendered the last view.

Solution 23 - Android

I did that and works for me :

private void YourListView_Scrolled(object sender, ScrolledEventArgs e)
        {
                double itemheight = YourListView.RowHeight;
                double fullHeight = YourListView.Count * itemheight;
                double ViewHeight = YourListView.Height;
               
                if ((fullHeight - e.ScrollY) < ViewHeight )
                {
                    DisplayAlert("Reached", "We got to the end", "OK");
                }
}

Solution 24 - Android

This will scroll down your list to last entry.

ListView listView = new ListView(this);
listView.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT));
listView.setTranscriptMode(ListView.TRANSCRIPT_MODE_ALWAYS_SCROLL);
listView.setStackFromBottom(true);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionfhuchoView Question on Stackoverflow
Solution 1 - AndroidWroclaiView Answer on Stackoverflow
Solution 2 - AndroidMartijnView Answer on Stackoverflow
Solution 3 - Androidt-gaoView Answer on Stackoverflow
Solution 4 - AndroidChris StewartView Answer on Stackoverflow
Solution 5 - AndroidJanwilx72View Answer on Stackoverflow
Solution 6 - Androidlazy lordView Answer on Stackoverflow
Solution 7 - AndroidJoelView Answer on Stackoverflow
Solution 8 - AndroidzeeshanView Answer on Stackoverflow
Solution 9 - AndroidCSX321View Answer on Stackoverflow
Solution 10 - AndroidTeno Gonzalez Dos SantosView Answer on Stackoverflow
Solution 11 - AndroidJohn Ruban SinghView Answer on Stackoverflow
Solution 12 - AndroidVyshnaviView Answer on Stackoverflow
Solution 13 - AndroidMax WorgView Answer on Stackoverflow
Solution 14 - AndroidWillView Answer on Stackoverflow
Solution 15 - AndroidGoran Horia MihailView Answer on Stackoverflow
Solution 16 - AndroidramonView Answer on Stackoverflow
Solution 17 - AndroidHenryChuangView Answer on Stackoverflow
Solution 18 - AndroidJanusz HainView Answer on Stackoverflow
Solution 19 - AndroidJoseph MhannaView Answer on Stackoverflow
Solution 20 - AndroidDante Carvalho CostaView Answer on Stackoverflow
Solution 21 - AndroidxiaoyeeView Answer on Stackoverflow
Solution 22 - AndroidgbenroscienceView Answer on Stackoverflow
Solution 23 - AndroidAhmed OsmanView Answer on Stackoverflow
Solution 24 - Androidsalman khalidView Answer on Stackoverflow