以编程方式将视图添加到 Android 视图组
这似乎是一个常见问题,但很难找到文档。我正在寻找示例,向我展示如何创建自己的视图组(最好通过扩展现有视图组),然后以编程方式添加视图。
谢谢。
This seems to be a common question yet documentation is very hard to find. I'm looking for examples that show me how to create my own view group (preferably by extending an already existing one) and then add views programmaticly.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ViewGroup
ViewGroup 是抽象的,它的 onLayout 也是抽象的。因此,您需要为 onLayout 提供一个实现,在其中为视图组的每个子视图(View)分配一个位置。
ViewGroup
ViewGroup is abstract, and its onLayout is abstract too. So you need to provide an implementation for onLayout where you do assign a position at every child (View) of the viewgroup.