felipecsl/QuickReturn

QuickReturnAttacher.addOnScrollListener(this);

Closed this issue · 2 comments

Doesn't seem to be available in 1.4.0. Is there a new way to attach a scrollListener?

Sorry I need to clarify in the README. If you're attaching it to an AbsListView, you can cast it to AbsListViewQuickReturnAttacher

final AbsListViewQuickReturnAttacher attacher = (AbsListViewQuickReturnAttacher) quickReturnAttacher;
attacher.addOnScrollListener(this);

thank you