我刚刚在我的应用程序中添加了可滑动的容器,它运行良好,唯一的事情是我希望它只向左滑动,从我在纪录片中读到的内容是,我可以让它向右滑动与
public SwipeableContainer(Component bottomLeft,
Component top)
或者让它左右滑动
public SwipeableContainer(Component bottomLeft,
Component bottomRight,
Component top)
由于 iOS 在删除列表项时通常总是向左滑动,因此我也希望这样可以为用户创造良好的感觉。有人知道怎么改吗?
Best Answer-推荐答案 strong>
刚刚意识到这一点
public SwipeableContainer(null,
Component bottomRight,
Component top)
我能做到。
关于java - 代号一 : Make swipeable container swipe only to the left,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40703462/
|