onScrollChanged запускается несколько раз для конца прокрутки в scrollView

Я реализовал класс слушателя, чтобы определить конец представления прокрутки по ссылке https://gist.github.com/marteinn/9427072

public class ResponsiveScrollView extends ScrollView {

private OnBottomReachedListener listener;

public ResponsiveScrollView(Context context) {
    super(context);
}

@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
    View view = getChildAt(getChildCount()-1);
    int diff = view.getBottom()-(getHeight()+getScrollY());
    if (diff == 0 && listener!= null) {
        listener.onBottomReached(this);
    }
    super.onScrollChanged(l, t, oldl, oldt);
}

public OnBottomReachedListener getBottomChangedListener() {
        return listener;
}

public void setBottomReachesListener(OnBottomReachedListener onBottomReachedListener) {
    this.listener = onBottomReachedListener;
}

public interface OnBottomReachedListener {
    public void onBottomReached(View view);
   }
}

Слушатель настроен на scrollView:

scrollView.setBottomReachesListener(new GenericScrollListerner(this));

Мой класс GenericScrollListerner:

public class GenericScrollListerner implements ResponsiveScrollView.OnBottomReachedListener {
private Context mContext;

public GenericScrollListerner(Context context) {
    this.mContext = context;
}

@Override
public void onBottomReached(View view) {
    Log.d("ScrollView","Scroll end");
    String tag = (String) view.getTag();
    Toast.makeText(mContext, "Scroll end with tag" +tag, Toast.LENGTH_SHORT).show();
}

}

Моя проблема в том, что onBottomReached запускается в два раза чаще. Как справиться с этой проблемой???

2 ответа

Решение

Наконец я нашел ответ без твика.

Расширьте пользовательский вид прокрутки с помощью NestedScrollView вместо ScrollView

public class ResponsiveScrollView extends NestedScrollView {

private OnBottomReachedListener listener;

public ResponsiveScrollView(Context context) {
    super(context);
}

@Override
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
    View view = getChildAt(getChildCount()-1);
    int diff = view.getBottom()-(getHeight()+getScrollY());
    if (diff == 0 && listener!= null) {
        listener.onBottomReached(this);
    }
    super.onScrollChanged(l, t, oldl, oldt);
}

public OnBottomReachedListener getBottomChangedListener() {
        return listener;
}

public void setBottomReachesListener(OnBottomReachedListener onBottomReachedListener) {
    this.listener = onBottomReachedListener;
}

public interface OnBottomReachedListener {
    public void onBottomReached(View view);
   }
}

Приведенный выше код будет работать

Это происходит из-за переполнения. Пожалуйста, добавьте следующую строку в декларации scrollview xml

android:overScrollMode="never"

Если проблема не устранена, используйте следующую настройку

@Override
    protected void onScrollChanged(int l, int t, int oldl, int oldt) {
        View view = getChildAt(getChildCount() - 1);
        int diff = view.getBottom() - (getHeight() + getScrollY());
        if (diff == 0 && listener != null && !stopTwice) {
            stopTwice=true;
            listener.onBottomReached(this);
        }else{
            stopTwice=false;
        }
        super.onScrollChanged(l, t, oldl, oldt);
    }
Другие вопросы по тегам