Reputation: 3033
I am implementing SwipeRefresh
in my ListView
. Its working fine when i pull the ListView
down. But whenever i scroll down using fastScroll
, it still swipes
the list. How can i disable this SwipeRefresh
when i am fastScrolling
the list.
Upvotes: 1
Views: 185
Reputation: 219
You need to implement
yourListView.setOnScrollListener(...)
in which you will implement
onScrollStateChange
where u will enable and disable the swipe refresh while scrolling.
Upvotes: 1