Android:克隆类实例
我必须构建一个 MyView 实例数组(扩展 WebView)。每个视图的唯一区别是内容。因此,我不想每次创建一个 MyView 时都重新创建它,所有其他实例都将是该实例的克隆。
在这种情况下,有没有办法在 Android 上做类似的事情? 请发布一个代码示例。 谢谢!
I have to build an array of MyView instances (extends WebView). The only difference of each view is the content. So instead of recreating this each time I would like to create one MyView all other instances would be clones of this one.
Is there a way for doing something like that in this case on Android?
Please post a code sample for it.
Thx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题有点模糊。根据理解,您无法创建视图的克隆。
您可以使用相同的 xml 布局。或者您可以更新视图的基础数据并使视图无效,以便重新绘制它。
You question is a bit vague. You cannot create clones of views according to understanding.
You can use the same xml layout. Or you can update the underlying data of a view and make the view to invalidate so it will be redrawn.