CircleRefreshLayout icon indicating copy to clipboard operation
CircleRefreshLayout copied to clipboard

CircleRefreshLayout refreshes even if it is not dragged from the top of the list

Open thesnowgoose opened this issue 9 years ago • 1 comments

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

thesnowgoose avatar Jul 23 '16 02:07 thesnowgoose

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)

Aayushi-Doshi avatar May 14 '18 08:05 Aayushi-Doshi