I have two questions. I'm working on an Android application that will store a list of items in xml
file. This list could potentially grow large, but it depends on the user. I'm using a DOM
parser for storing and SAX
parser for reading. Right now I'm just executing the read and write methods.
First question: Should I wrap the methods in a Thread
or AsynchTask
? I honestly have no idea how fast they parse for big amounts of data.
Second question: Should I be using a different kind of data container for storing data? Database or something.
Thanks in advance.