大约有 91 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0031 秒)
Laya_社区(65) Laya2.0_文档(6) laya_api(4) Laya2.0_示例(4) Laya2.0_api(4) Laya3.0_api(3) Laya_示例(3) Laya3.0_文档(2)
...就不行了,会出现重复的注册。 在这种情况一般是使用itemRender,简单制作一个view来作为list的item来使用,然后通过重写view的set dataSource方法来接管显示,同时还能控制事件注册。 2019-02-12 0 1 分享 微博 QZONE 微信 为什么被折叠? ...
来源: Laya_社区 发布时间: 20190208
...,滚动事件被劫持了 let storeTxList = new Laya.List(); storeTxList.itemRender = StoreItem; storeTxList.name = 'storeTxList'; storeTxList.width = 610; storeTxList.pos(0, 0); storeTxList.repeatX = repeatX; storeTxList.repeatY = repeatY; //y轴个数 // 使用但隐藏滚动条 storeTxList.v...
来源: Laya_社区 发布时间: 20190711
...on组件的使用 3D模型增加拖尾组件后有内存泄漏 如何使用itemRender来给一个list中的组件配上一个包含不同名称 图片 按钮的操作 问题状态 最新活动: 2017-05-04 16:12 浏览: 2227 关注: 2 人 rabee • 2017-09-28 14:27 那item如何销毁呢?能手动...
来源: Laya_社区 发布时间: 20170503
...BarSkin = ""; list.selectEnable = true; list.itemRender = BagItem; list.renderHandler = new Handler(this, this.updateListItem); list.selectHandler = new Handler(this, this.onSelect); this.addChild(list); ...
来源: Laya_社区 发布时间: 20170310
..._list); } protected function createList():void { _list = new List(); _list.itemRender = RecordItem; _list.repeatX = 1; _list.repeatY = 13; _list.spaceY = 3; _list.vScrollBarSkin = ""; _list.renderHandler = new Handler(this, renderHandler); } protected function createItems():void { _items = ; for(var...
来源: Laya_社区 发布时间: 20170323
...ar List = Laya.List; function setup(effList) { var list = new List(); list.itemRender = Item1; list.repeatX = 3; list.repeatY = 4; list.x = (Laya.stage.width - WID * list.repeatY) / 2 - 100; list.y = (Laya.stage.height - HEI ) / 2; // 使用但隐藏滚动条 list.vScrollBarSkin = ""; list.selectEna...
来源: Laya_社区 发布时间: 20170627
...问题 this.publicSpaceList = new Laya.List(); this.publicSpaceList.itemRender = gamepublicspaceitem.PublicSpaceItem; this.publicSpaceList.repeatX = 1; this.publicSpaceList.repeatY = 3; this.publicSpaceList.spaceY = 0; // this.publicSpaceList.x = 22; this.publicSpaceList.y = 100; this.publicSp...
来源: Laya_社区 发布时间: 20170923
... • 2019-05-15 11:48 @Laya_Aaron:像Laya.List的话,类似this.myList.itemRender=我的自定义类名 Laya_Aaron • 2019-05-15 16:43 @1555918138用户:https://ldc.layabox.com/doc/?nav=zh-as-3-2-0 是这个里面的样子吗? 1555918138用户 • 2019-05-16 09:27 @Laya_Aaron:不是。官方用...
来源: Laya_社区 发布时间: 20190514
... 2 人 W • 2018-07-27 15:40 具体怎么获取得到呢,只找到一个itemRender,获取每个单元,得到不到子box Laya_Aaron • 2018-07-27 19:39 box 的var 是你自己命名的,亲测可用 W • 2018-07-30 10:34 具体在你们获取到呢。不能直接使用this.,还有其他拌...
来源: Laya_社区 发布时间: 20180720
...dArray.push(new Food("菜品5", "5", 4)); var list:List = new List(); list.itemRender = Food; list.array = foodArray; list.repeatX = 1; list.repeatY = foodArray.length; list.renderHandler = new Handler(this, onListRender); Laya.stage.addChild(list); } private function onListRender(food):void{ trace(...
来源: Laya_社区 发布时间: 20180407