BST Kaal
BST Kaal

Reputation: 3033

How to disable the SwipeRefresh during FastScrolling?

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

Answers (1)

Ali Ansari
Ali Ansari

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

Related Questions