如何更新Android中动态创建的表中的数据?
我创建了一个动态表,其中包含图片、名称、日期和信息。等等。该数据来自我已经解析的 XML 格式的服务器。我的表创建得很完美。 但我的问题是,如果在我查看表时更新 xml 数据,那么我如何同时更新表的数据。 希望你能解决我的问题.. 请帮我
I have created a dynamic Table which contains a picture,name,date & etc.That data comes from Server in XML Format which I have parsed.My Table is created perfectly.
But My problem is if xml data is updated while I am viewing my Table so simultaneously how can I update the table's data .
Hope you got my problem ..
Please Help ME
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看不到任何明确的系统来更新数据,该系统不会删除所有子项并根据收到的新数据添加新项。
在我看来,如果您切换到 ListView 会更好:通过简单的样式处理,您可以获得与 TableView 相同的外观和感觉,并且可以利用 Adapter 来更新数据。
I cannot see any clear system for updating data that is not removing all child and adding the new based on the new data received.
In my opinion it's better if you switch to a ListView: with a easy style-process you can get the same look&feel of a TableView and you can take advantage of the Adapter for updating data.