代号1:使可滑动容器仅向左滑动

时间:2016-11-20 11:28:09

标签: java ios codenameone

我刚刚将可滑动的容器添加到我的应用程序中并且它工作正常,唯一的事情是我只想向左滑动,从我在纪录片中看到的是,我可以让它滑到右边与

public SwipeableContainer(Component bottomLeft,
                          Component top)

或左右滑动

public SwipeableContainer(Component bottomLeft,
                          Component bottomRight,
                          Component top)

由于iOS滑动通常​​总是向左移动以删除列表项,因此我也希望它能够为用户创造良好的感觉。谁知道如何改变这个?

1 个答案:

答案 0 :(得分:2)

只是简单地意识到

public SwipeableContainer(null,
                          Component bottomRight,
                          Component top)

我能做到。