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

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

51. LIST renderHandler的ITEM高度自定义后,设置content变更其内部容器大小不生效 [ 63%]

....renderHandler = new Laya.Handler(this, this.onItemUpdate); this.list_view.mouseHandler = new Laya.Handler(this, this.onItemClick); this.list_view.array = ;// 这里必须要初始化数据 }   ViewActivityLimitedTask.prototype.onItemUpdate = function(_cell, _index) {     var data = this.mList_.t...

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

52. List修改datasource数据的时候出现部分数据不能被修改 [ 63%]

...array = dataSource; this.mainUI.list.vScrollBarSkin = ""; this.mainUI.list.mouseHandler = new Laya.Handler(this, this.onSelect); this.mainUI.list.renderHandler = new Laya.Handler(this, this.onRender); Laya.stage.addChild(this.mainUI); }; GameMain.prototype.onRender = function (cell, index) { if(inde...

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

53. layaPlayer无法获取canvas.toDataURL数据 [ 62%]

...nable=false后过一段时间设置mouseWheelEnable=true;无法滚动 tree mouseHandler 怎么获取条目 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也存...

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

54. list图片路径没问题.为什么图片就是不显示.啊啊啊也,求解答 [ 62%]

...Arr[i].amount}); } } this.otherItem_list.array = data; this.otherItem_list.mouseHandler = new Handler(this,otherItem_listRender); fengjingmeng • 2018-03-21 16:44 你这个是list的逻辑,item的更新逻辑呢。item拿到数据后你做了什么处理? z624697 • 2018-03-21 16:46 现在是...

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

55. 列表里的元素可以播放动画吗 [ 62%]

...新时触发 并发送Box,index             this.storelist.mouseHandler = new Handler(this,onMouse);//当list被点击时触发 并发送event,index         }          public function onRender(cell:Box,index:int):void          {             ...

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

56. 怎么获取完全限定类名,就像as的getQualifiedClassName [ 61%]

...? Laya2.6.0beta 物理引擎 刚体碰撞点位置获取不正确 tree mouseHandler 怎么获取条目 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,只展示了其中的图片部分,数组能console出,那个list中的数据也存在...

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

57. List翻页效果 [ 61%]

...llBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = ; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; } ...

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

58. 列表嵌套另外一个列表 [ 61%]

...his,onRender);//当list刷新时触发 并发送Box,index this.storelist.mouseHandler = new Handler(this,onMouse);//当list被点击时触发 并发送event,index } public function onRender(cell:Box,index:int):void { //当list刷新时接收并更改单元格属性 var hero:Image = cell.getChildBy...

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

59. List翻页效果怎么实现 [ 61%]

...llBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = []; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; ...

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

60. list item 添加事件后无法监听 [ 60%]

... = x;     list.y = y;     list.vScrollBarSkin = "";      list.mouseHandler = new Handler(this, onSelect)     list.selectEnable = true;     list.selectHandler = new Handler(this, onSelect);      list.renderHandler = new Handler(this, updateItem);     return list; }  fun...

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