大约有 40 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0038 秒)
Laya_社区(28) Laya3.0_api(3) Laya2.0_文档(3) Laya3.0_文档(2) laya_api(1) Laya2.0_api(1) Laya_示例(1) Laya2.0_示例(1)
...createItems = function (startY, numX, numY) { var box = this._content; var cell = this._getOneCell(); var cellWidth = cell.width + this._spaceX; var cellHeight = cell.height + this._spaceY; if (this.cacheContent) { var cacheBox = new Box(); cacheBox.cacheAsBitmap = true; cacheBox.pos((this._isVertic...
来源: Laya_社区 发布时间: 20180418
...--------------------------------------------------------------- updateItem(cell:Item,index:number){ var img1 = cell.getChildByName("img1") as Laya.Image; var img2 = cell.getChildByName("img2") as Laya.Image; img1.on("click",this,this.onRefresh,[inde...
来源: Laya_社区 发布时间: 20190522
list有办法获取到全部cell吗? 看了下api,getCell获取的是当前可视的,cells长度也不对,我定义的list里面有20个box,cells输出长度为10,请问有没有获取到全部20个box的接口呢? 2018-08-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20180809
List的cells值和显示的数量不一样 2017-12-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 能详细描述一下这个问题吗,最好附上截图,环境,demo之类的 201...
来源: Laya_社区 发布时间: 20171216
....push("res/ui/listskins/5.jpg"); } list.array = data; } private updateItem(cell: Item, index: number): void { cell.setImg(cell.dataSource); } private onSelect(index: number): void { console.log("当前选择的索引:" + index); } } import Box = Laya.Box; import Image = Laya.Image; class Item exte...
来源: Laya2.0_示例 发布时间: 20241117
..."../../res/ui/listskins/5.jpg"); } list.array = data; } private updateItem(cell: Item, index: number): void { cell.setImg(cell.dataSource); } private onSelect(index: number): void { console.log("当前选择的索引:" + index); } } import Box = Laya.Box; import Image = Laya.Image; class Item exte...
来源: Laya_示例 发布时间: 20241117
...ox BVHRenderBox Index Constructors constructor Accessors parent Methods addCell destroy fillCell fillRemove getItemByCameraCullInfo getItemByFrustum getItemBySCI getList getNearlist getchild0 getchild1 isContentBox isRoot recaculateBox removeCell splitBox traverseBoundsCell sciContainsBox sciInterse...
来源: Laya3.0_api 发布时间: 20231115
...t; BVHRenderBox Index Constructors constructor Accessors parent Methods addCell destroy fillCell fillRemove getItemByCameraCullInfo getItemByFrustum getItemBySCI getList getNearlist getchild0 getchild1 isContentBox isRoot recaculateBox removeCell splitBox traverseBoundsCell sciContainsBox sciInterse...
来源: Laya3.0_api 发布时间: 20231115
...ew Handler(this, updateItem); return list; } function updateItem(cell, index) { console.log(index); // console.log(cell.dataSource); cell.setImg(cell.dataSource[index]); cell.on(Laya.Event.CLICK, function() { console.log("click") }) }...
来源: Laya_社区 发布时间: 20180724
...听不到mouseHandler跟selectHandler。 需求:需要对list中的每个cell设置监听 问题:在微信小游戏中使用list,监听不到mouseHandler跟selectHandler,但是renderHandler的回调是正常的。1、我对list设置了on去监听mouse事件,可以触发回调 on 上面的...
来源: Laya_社区 发布时间: 20180731