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

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

1. UI-List [ 100%]

... Box = Laya.Box; var Image = Laya.Image; var WID = 373, HEI = 85; function Item() { Item.__super.call(this); this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); this.setImg = function(src) { this.img.skin = src; } } Laya.class(Item, "Item", Box); // 主要逻辑代码 var Stage = L...

来源: Laya_示例 发布时间: 20241117

2. UI-List [ 98%]

...开发更高效。const WID = 373, HEI = 85; const Box = Laya.Box; class Item extends Box { constructor(){ super(); const Image = Laya.Image; this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); } setImg(src) { this.img.skin = src; } } class UI_List { constructor() { const Browser =...

来源: Laya2.0_示例 发布时间: 20241117

3. 如何实现点击列表时,点击item中的按钮有事件,点击item其他位置没有事件,目前只能实现点击list里的item组件进行事件监听,没办法实现监听item中的button [ 97%]

如何实现点击列表时,点击item中的按钮有事件,点击item其他位置没有事件,目前只能实现点击list里的item组件进行事件监听,没办法实现监听item中的button   附件 : --> 2017-11-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相...

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

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

list item 添加事件后无法监听 刚接触laya不久,按官方文档写了list的demo,但是发现item的点击/ select一直没回调,这是我的代码,求大神解答     // 初始化ListView function createListView(x, y, width, height, item_width, item_height) {     var list ...

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

5. UI List 居中 [ 96%]

...关的链接 提交 1 个回复 Laya_XS 赞同来自: 你可以在listitem里通过嵌套vbox或hbox做水平或垂直居中的效果! 2017-03-05 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 jiagui 相关问题 List滑动条会引...

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

6. ui组件list数据源的疑问 [ 94%]

...的例子   拿一个例子来说,譬如UI项目下的arr.push({label: "item " + i, clip: i % 9});这句话,这个是为listitem赋值,label和clic对应的是listitem(Box)下的Label和Clip组件的name值,也就是你要为哪个组件赋值,每个组件都有自己的默认...

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

7. listitem的对应button 添加默认事件后。初始化list时取消UI页面默认设置的事件出错 [ 94%]

listitem的对应button 添加默认事件后。初始化list时取消UI页面默认设置的事件出错 初始化时通过index下标 取消对应的事件。除了取消了当前的index下绑定事件。还取消了index值为当前index倍数的响应事件。 附件 : --> 2018-07-19 添...

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

8. List的selectHandler 点击同一个item只能触发一次回调 [ 94%]

List的selectHandler 点击同一个item只能触发一次回调 点了一个item A回调后,再点item A就不会回调. 点另一个irem B后再点item A,,item A才会回调. handler的第4个参数once设的是false 附件 : --> 2019-03-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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

9. list里面可以加入多个view吗? [ 94%]

...unction onLoaded():void { list=new List(); Laya.stage.addChild(list); list.itemRender=Item; list.repeatX=1; list.repeatY=6; list.x=((Laya.stage.width-Item.WID)/2); list.y=((Laya.stage.height-Item.HEI*list.repeatY)/2); list.vScrollBarSkin="comp/vscroll.png"; list.renderHandler=new Handler(this,onRend...

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

10. List组件拖动浏览时item会出现重叠的现象 [ 93%]

List组件拖动浏览时item会出现重叠的现象 module list.datasource { import List = laya.ui.List; export class ListDataSourceMediator { constructor() { } public setUp():void { var list: List = new List(); // 渲染的item list.itemRender = ListDataSourceItem; // 设置行列显示的item...

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