• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 91 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0031 秒)

51. List滑动条会引起单元格上的按钮点击后多次触发点击事件 [ 52%]

...就不行了,会出现重复的注册。 在这种情况一般是使用itemRender,简单制作一个view来作为list的item来使用,然后通过重写view的set dataSource方法来接管显示,同时还能控制事件注册。 2019-02-12 0 1 分享 微博 QZONE 微信 为什么被折叠? ...

来源: Laya_社区 发布时间: 20190208

52. Laya List给子元素添加事件后,滚动事件被劫持了 [ 52%]

...,滚动事件被劫持了 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

53. ui组件list数据源的疑问 [ 52%]

...on组件的使用 3D模型增加拖尾组件后有内存泄漏 如何使用itemRender来给一个list中的组件配上一个包含不同名称 图片 按钮的操作 问题状态 最新活动: 2017-05-04 16:12 浏览: 2227 关注: 2 人 rabee • 2017-09-28 14:27 那item如何销毁呢?能手动...

来源: Laya_社区 发布时间: 20170503

54. list中加的button不能接收点击事件 求一个list中加button的demo [ 52%]

...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

55. 鼠标穿透问题 [ 51%]

..._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

56. list 加载动画为什么实现的效果会错乱掉? [ 50%]

...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

57. Image.loadImage 方法加载问题 [ 50%]

...问题     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

58. 自定义Laya.Tab的item,tab注册的selectHandler无法触发到回调函数 [ 50%]

... • 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

59. list组件里面使用box作为渲染项,在渲染项里面再嵌套一个box,这里面的数据该怎么渲染呢 [ 49%]

... 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

60. 【求助】怎么在自定义对象进行实例化的时候,给它绑定监听事件 [ 49%]

...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