This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class OnTotalScrolledListener implements AbsListView.OnScrollListener { | |
private List<Integer> mHeights = new ArrayList<>(); | |
@Override | |
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { | |
View c = view.getChildAt(0); | |
if (c != null) { |