大约有 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)
...../../res/ui/listskins/5.jpg"); } list.array = data; } function updateItem(cell, index) { cell.label.text = cell.dataSource.lb; cell.input.text = cell.dataSource.value; // cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } })();这段代码...
来源: Laya_社区 发布时间: 20180312
...index){ console.log(index + ' selected'); } _proto.onRenderList = function(cell,index){ console.log(cell.dataSource); //如果索引不再可索引范围,则终止该函数 if(index > this.data.length)return; //获取当前渲染条目的数据 var listData = this.data[index]; console.log(listD...
来源: Laya_社区 发布时间: 20170914
...e.log(this.ui.List.localToGlobal(new Laya.Point(0, 0)));我想获取List下cell的坐标, 但是不管怎么拖动, 打印出来的数值都是一样的,不知道是使用错误还是哪里设置错误 2017-03-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20170329
... 0 分享 微博 QZONE 微信 130*****753 赞同来自: Laya 自带的List cell 不支持修改宽高,就没法不等高了。我也有这个需求,我做的聊天气泡。使用fairyGui得GList结合laya。可以实现每个cell得宽高自定义。 下图是效果,每个聊天气泡是list...
来源: Laya_社区 发布时间: 20191126
...时会停止滚动条。当通过滑动滚动条进行动态更新List的cell时,设置为true会让列表滚动的平滑流畅 二、通过代码创建List组件 在进行书写代码的时候,免不了通过代码控制UI,创建UI_List类,通过代码设定List相关的属性。 示例代...
来源: Laya3.0_文档 发布时间: 20241014
list控件内字体大小设置无效 private function updateItem(cell:Box, index:int):void{ var itemImg:Image=cell.getChildByName("itemImg") as Image; var itemName:Label=cell.getChildByName("itemName") as Label; itemImg.skin=cell.dataSource.image_url; itemName.width=Number(itemName.text.length*2...
来源: Laya_社区 发布时间: 20170829
...push("res/ui/listskins/5.jpg"); } list.array = data; } function updateItem(cell, index) { cell.setImg(cell.dataSource); } function onSelect(index) { console.log("当前选择的索引:" + index); } })(); ```
来源: Laya2.0_文档 发布时间: 20210714
....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_文档 发布时间: 20210715
...st.array = that._items;updateitem代码如下: function UpdateMarketItem(cell, index) { // {id:1,name:"10金豆-测试",price:0.01,title:"10金豆-测试",desc:"测试",balance:10,gift:0,imgPath:"res\\common\\BalanceSellDlg\\xiaodou.png",hot:1,orderCount:9} cell.setGold(cell.dataSource.balance + c...
来源: Laya_社区 发布时间: 20170422
...); } /***渲染单元格时的回调方法***/ private function updateItem(cell:Item, index:int):void { //用获得的数据给图片更换皮肤 cell.img.skin=cell.dataSource; } /***选择单元格回调***/ private function onSelect(index:int):void { trace("当前选择的索引:" + index); } } ...
来源: Laya2.0_文档 发布时间: 20210715