Arun Badole
Arun Badole

Reputation: 11097

How to Update Data in dynamically created table in Android?

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

Upvotes: 0

Views: 1199

Answers (1)

kikoso
kikoso

Reputation: 708

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.

Upvotes: 1

Related Questions