CircleRefreshLayout refreshes even if it is not dragged from the top of the list
What I mean is that when I am trying to scroll up (not from the top element in list) the CircleRefreshLayout animation starts and it does refresh instead of scrolling up.
I am using a recyclerView , something like `<LinearLayout> // Root layout
<LinearLayout> // Root layout
<ToolBar>
<CircleRefreshLayout>
<LinearLayout> // List Container
<RecyclerView>`
and my code looks like I mentioned on issue #5
Hi, I have the same issue with scroll up (not from the top element in the list) the CircleRefreshLayout animation starts and it does refresh instead of scrolling up.
<LinearLayout> // Root layout <ToolBar> <CircleRefreshLayout> <LinearLayout> // List Container <RecyclerView>`
in this hierarchy, if i remove "<LinearLayout> // List Container" this viewGroup , means now something like this <LinearLayout> // Root layout <ToolBar> <CircleRefreshLayout> <RecyclerView>` scroll behave perfectly (this is not the solution)