You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to enable and disable the swipe refresh layout like following:
srl.post(() -> srl.setEnabled(false));
This works 100% reliable, if I use a default swipe refresh layout but fails very often, if I use the WaveSwiperefreshLayout (fails means, the layout is still enabled after calling the function).
Any ideas how to solve that?
The problem is, that you use setEnabled internally as well to temporarily disable the view...
The text was updated successfully, but these errors were encountered:
I'm trying to enable and disable the swipe refresh layout like following:
This works 100% reliable, if I use a default swipe refresh layout but fails very often, if I use the
WaveSwiperefreshLayout
(fails means, the layout is still enabled after calling the function).Any ideas how to solve that?
The problem is, that you use
setEnabled
internally as well to temporarily disable the view...The text was updated successfully, but these errors were encountered: