动态添加行与使用列表适配器
与使用自定义列表适配器相比,将表行动态添加到 TableLayout 有何优点和缺点?
What are the advantages and disadvantages of adding table rows dynamically to a TableLayout compared to using a custom list adapter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 @binnyb 所说,ListView 为您提供了巨大的性能优势。如果您正确实现适配器,那么即使您的 ListView“包含”数千个条目,在任何给定时间您也只会膨胀少量视图。
As @binnyb said ListView gives you a huge performance advantage. If you implement the Adapter properly then you will only have a handful of views inflated at any given time, even if your ListView 'contains' thousands of entries.