Reputation: 3
I am using CardStackView in Android: https://github.com/yuyakaido/CardStackView
In activity, swipe action works well, but in fragment, I cannot use swipe fucntion. Why does this happen?
Upvotes: 0
Views: 787
Reputation: 11
I had the same issue:
manager.setSwipeableMethod(SwipeableMethod.AutomaticAndManual);
Fixed it for me.
Upvotes: 1
Reputation: 93
Did you try like followings?
cardStackView.setSwipeEnabled(true);
I think if you set swipeenabled as true, it will works
Upvotes: 0