Quote:
|
When I prase xml at the same time i want to update list which cotain data from the xml file.
|
if you are not in event thread just get event lock using
Code:
(UiApplication.getUiApplication().getEventLock())) {
// UI Code here
} Quote:
|
Is downloading and parsing of a file running consequently....
|
Use any pull parser.
A pull parser reads a little bit of a document at once. The application drives the parser through the document by repeatedly requesting the next piece.