实际上,评论2.0中有一个错误
sample
.
这个
CommentsPresenter
定义自定义
ListCell
对于
ListView
,并创建
binding
从单个
BooleanProperty
到列表视图中的每个单元格:
commentsList.setCellFactory(cell -> {
final CommentListCell commentListCell = new CommentListCell(
service,...);
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
.