我的自定义 ViewGroup 不会在 ScrollView 内滚动
我扩展了 ViewGroup 来实现类似 FlowLayout 的功能。我将自定义 ViewGroup 放入 ScrollView 中,动态添加一堆内容,但它不滚动。流出屏幕的内容是不可见的。
我缺少什么,如何让我的 ViewGroup 与 ScrollView 兼容?
I've extended ViewGroup to achieve something like a FlowLayout. I put my custom ViewGroup into a ScrollView, dynamically add a bunch of content and it doesn't scroll. The content that flows off the screen is not viewable.
What am I missing, how can I allow my ViewGroup to be compatible with ScrollView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 ViewGroup 应该将其高度设置为 wrap_content 才能正常工作。这也意味着您需要正确实现 onMeasure() 才能为您的 ViewGroup 提供适当的高度。
Your ViewGroup should have its height set to wrap_content to work properly. This also means you need to implement onMeasure() properly to give your ViewGroup an appropriate height.