568071718 a7834bcf15
Merge pull request #3 from 568071718/dequeue-reusable
尝试修复刷新时内容闪烁的问题
2025-01-19 10:12:37 +08:00
2025-01-08 23:44:43 +08:00
2024-12-14 15:32:38 +08:00
2024-12-14 15:32:38 +08:00
2025-01-08 23:44:43 +08:00

title.png


开发环境

  • 2.x
    引擎版本Cocos Creator 2.4.13
    编程语言TypeScript
  • 3.x
    引擎版本Cocos Creator 3.8.0
    编程语言TypeScript

基本特性

  • 节点回收复用(虚拟列表模式)
  • 分帧预加载节点(非虚拟列表模式)
  • 多种 cell 节点类型
  • 列表嵌套
  • 分区概念
  • supplementary 补充视图概念
  • 多种 supplementary 节点类型
  • 布局解耦(组件核心)

table-layout

  • 仿 TableView 样式,仅支持垂直方向排列
  • 支持设置不同的行高
  • 支持分区模式
  • 支持添加区头/区尾
  • 支持区头/区尾悬浮吸附效果
  • 在线演示

使用

listComp.numberOfItems = () => 10000
listComp.cellForItemAt = (indexPath, collectionView) => {
    const cell = collectionView.dequeueReusableCell(`cell`)
    cell.getChildByName('label').getComponent(Label).string = `${indexPath}`
    return cell
}

let layout = new YXTableLayout()
layout.spacing = 20
layout.rowHeight = 100
listComp.layout = layout

listComp.reloadData()

更多接口

  • 内部 ScrollView 组件
let isScrolling = this.listComp.scrollView.isScrolling()
let isAutoScrolling = this.listComp.scrollView.isAutoScrolling()
this.listComp.scrollView.brake = 0.8
this.listComp.scrollView.bounceDuration = 0.25
this.listComp.scrollView.scrollToOffset(new math.Vec2(0, 200))
// ... 可以直接使用更多 ScrollView 属性或者方法  
  • 开启分区
// 注意: 分区需要自定义 YXLayout 支持  
this.listComp.numberOfSections = () => 2 // 设置列表分 2 个区排列
this.listComp.numberOfItems = (section, collectionView) => {
    if (section == 0) {
        return 10 // 第 1 个区返回 10 条数据
    }
    if (section == 1) {
        return 20 // 第 2 个区返回 20 条数据
    }
    return 0 // 默认情况  
}
  • 节点显示状态回调
this.listComp.onCellDisplay = (cell, indexPath, collectionView) => {
    log(`onCellDisplay: ${indexPath}`)
}
this.listComp.onCellEndDisplay = (cell, indexPath, collectionView) => {
    log(`onCellEndDisplay: ${indexPath}`)
}
  • 滚动至指定位置
let indexPath = new YXIndexPath(0, 2) // 要滚动到的节点索引
this.listComp.scrollTo(indexPath)
  • 预加载相关接口
this.listComp.preloadNodesLimitPerFrame = 2 // 每帧加载多少个节点
this.listComp.preloadProgress = (current, total) => {
    log(`加载进度: ${current}/${total}`)
}

相关链接

Description
Languages
TypeScript 100%