h6ah4i / android-advancedrecyclerview

RecyclerView extension library which provides advanced features. (ex. Google's Inbox app like swiping, Play Music app like drag and drop sorting)
https://advancedrecyclerview.h6ah4i.com/
Apache License 2.0
5.32k stars 860 forks source link

Horizontal Scroll View #144

Open pixelbendr opened 8 years ago

pixelbendr commented 8 years ago

I have a horizontal scroll view in my view holder. And the problem is it doesn't scroll because of this library. How do the give the horizontal scroll view priority and allow swiping when the scroll view has reached its end of scrolling. Please Help. :(

h6ah4i commented 8 years ago

Hi. If you want to use swiping feature with horizontal layout, have to modify your adapter implementation.

Use *_UP, *_DOWN, *_TOP, *_BOTTOM, *_V
pixelbendr commented 8 years ago

Please where should I do this?

h6ah4i commented 8 years ago

where: Your adapter class which implements SwipeableItemAdapter interface.

pixelbendr commented 8 years ago

Ok, thank you.