Skip to content

Instantly share code, notes, and snippets.

View Sarasranglt's full-sized avatar
❤️
Full Stacked.

Sarasranglt Sarasranglt

❤️
Full Stacked.
View GitHub Profile
@cnnrhill
cnnrhill / ListViewScrollTracker.java
Created September 24, 2013 04:24
Helper class for calculating relative scroll offsets in a ListView or GridView by tracking the position of child views.
import android.util.SparseArray;
import android.widget.AbsListView;
/**
* Helper class for calculating relative scroll offsets in a ListView or GridView by tracking the
* position of child views.
*/
public class ListViewScrollTracker {
private AbsListView mListView;
private SparseArray<Integer> mPositions;