1

I want to detect event MyScrollView reach bottom.

like Listview code

getListView().setOnScrollListener(new OnScrollListener() {
    @Override
    public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
        if (totalItemCount == firstVisibleItem + visibleItemCount) {// reach scroll bottom
}

how to?

dmnlk
  • 2,995
  • 2
  • 25
  • 30
  • possible duplicate of [Android: Detecting When ScrollView Hits Bottom](http://stackoverflow.com/questions/4953692/android-detecting-when-scrollview-hits-bottom) – ForceMagic Mar 12 '14 at 12:36

1 Answers1

0

ThisLink may help You to find the last position in a scroll view.You can try this for now

Community
  • 1
  • 1
ravi
  • 64
  • 10