CustomListItem 的最小高度
我有一个自定义列表。我想放入高度为 30 px 的自定义列表项。但当我这样做时,它们出现在 50 像素左右。无论我做什么,自定义列表项的高度都无法降低到 30 px。
是不是customlist项的高度固定为某个最小高度?
I have a customlist. I want to put in customlistitems of height 30 px. But when I do that they appear around 50 px. No matter what I do, the height of customlist item couldn't be brought down to 30 px.
Is it that the height of the customlist item is fixed to a certain minimum height?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
API 告诉我们将高度设置为小于 50 的值时还有其他问题。所以应该是可能的...但我也无法设置更小的高度!也许那是一个错误?
The API tells that there are other issues when setting the height to a value smaller than 50. So it should be possible... But I am also not able to set a smaller height! Maybe thats a bug?
事实证明这是预启动 SDK 的问题。它建议改用 ListView,并使用 CustomItem 创建项目。配合这个效果很好。
This turned out to be the issue with prelaunch SDK. It suggests to use ListView instead, and use CustomItem to create items. Works fine with that.