代码之家  ›  专栏  ›  技术社区  ›  Antonio Marcos

使用SlidingListTile时阻止垂直滚动

  •  1
  • Antonio Marcos  · 技术社区  · 7 年前

    我想使用SlidingListTile,但我有一些问题。 我认为当我们使用水平滑动时,垂直滚动应该被锁定,因为在手机上很难完成滑动消除。

    有人遇到过这样的情况吗?

    提前感谢,

    以下是我的部分代码:

        slidingTile.swipedLeftProperty().addListener((obs, ov, nv) -> {
            if (nv && edit != null) {
                edit.accept(currentItem);
            }
            slidingTile.resetTilePosition();
        });
        slidingTile.swipedRightProperty().addListener((obs, ov, nv) -> {
            if (nv && edit != null) {
                edit.accept(currentItem);
            }
            slidingTile.resetTilePosition();
        });
    
    1 回复  |  直到 7 年前
        1
  •  0
  •   José Pereda    7 年前

    实际上,评论2.0中有一个错误 sample .

    这个 CommentsPresenter 定义自定义 ListCell 对于 ListView ,并创建 binding 从单个 BooleanProperty 到列表视图中的每个单元格:

    commentsList.setCellFactory(cell -> { 
            final CommentListCell commentListCell = new CommentListCell(
                    service,...);
    
            // notify view that cell is sliding
            sliding.bind(commentListCell.slidingProperty());
    
            return commentListCell; 
        });
    

    显然,每个单元格的滑动特性可能随时间而变化,但只有最后一组会占上风,因此它不会反映其他单元格的此特性的变化。

    修复很简单:不使用绑定,而是使用侦听器 对于每个单元格 将在单元格滑动时设置值:

    commentsList.setCellFactory(cell -> { 
            final CommentListCell commentListCell = new CommentListCell(
                    service,...);
    
            // notify view that cell is sliding
            commentListCell.slidingProperty().addListener((obs, ov, nv) -> 
                sliding.set(nv));
    
            return commentListCell; 
        });
    

    我已经提交了 issue .