Flex:列表可用于在同等大小的图块中显示控件
在我正在工作的应用程序之一中,已经使用了List。我需要以图块的形式显示项目。我现在不想更改组件。有什么方法可以仅在列表中实现这种布局。
如果您对此有任何想法,请告诉我。
提前致谢。
In one of the application I am working, List has been used. I am required to display items in the form of tiles. I do not want to change the component as of now. Is there any way to achieve this layout in list only.
Please let me know if you have any idea in this regard.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过将 List 上的布局设置为 TileLayout 来完成此操作。正如 alxx 所说,您可能需要创建一个自定义 ItemRenderer 并将其设置在您的列表上。
You can do this by setting the layout on your List to TileLayout. And as alxx said, you may need to create a custom ItemRenderer and set that on your List as well.
制作自定义渲染器并通过 itemRenderer 属性将其插入列表中。
http ://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/
Make custom renderer and plug it into your list via itemRenderer property.
http://www.arpitonline.com/blog/2008/01/22/creating-custom-list-renderers-the-complete-guide-part-i/