当 HorizontalList 调整大小时调整项目渲染器的大小
我有一个在运行时调整大小的 HorizontalList。 问题是项目没有将其高度调整为 HorizontalList 的高度。 我使用项目渲染器 (vBox),其高度设置为 100%。 但这些项目始终保持其初始大小。
I have a HorizontalList that is resized at runtime. The problem is that the items are not adjusting their height to the height of the HorizontalList.
I use an item renderer (vBox) which has its height set to 100%. But the items always stay at their initial size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了这个问题:
我向
horizontalList
添加了一个调整大小侦听器,并在处理程序中手动调整其rowHeight
。 到目前为止效果很好。I solved this:
I added a resize listener to the
horizontalList
and adjust itsrowHeight
manually in the handler. Works fine so far.