yuyakaido / CardStackView

📱Tinder like swipeable card view for Android
Apache License 2.0
2.37k stars 448 forks source link

how to allow only swipe to top? #225

Closed jamesvanhallen closed 5 years ago

jamesvanhallen commented 5 years ago

I want to prevent swipe to bottom in Vertical Mode.

yuyakaido commented 5 years ago

@jamesvanhallen We can implement this feature by using Swipe Direction. Can you put the following code in your project?

manager.setDirections(Arrays.asList(Direction.Top))
manager.setCanScrollHorizontal(false)
manager.setCanScrollVertical(true)
jamesvanhallen commented 5 years ago
Screenshot 2019-03-31 at 13 09 27 Screenshot 2019-03-31 at 13 09 48

Unfortunately, it's not working for me.

jamesvanhallen commented 5 years ago

com.yuyakaido.android:card-stack-view:2.2.5