Asking for code review

I’ve made a small module that recreates an instance from a csv file created by Aggregate. I was hoping someone could have a look, tell me if I’m going at it the wrong way
http://code.google.com/r/general124-import/source/list?name=v1.1.6

any processing you do should not be in the activity (where it'll
likely block the ui thread). instead, have your activity spawn an
async task (and implement a listener). move all the processing to the
task and publish updates to whatever dialog (or ui element) you want
to have in your activity.

http://developer.android.com/resources/articles/painless-threading.html
and http://developer.android.com/guide/practices/design/responsiveness.html
should help. we also have examples of this in odk collect for form
download, form load, saving, etc. odk clinic also has lots of examples
(and is a smaller codebase to look at).

··· 2011/5/24 Kee Chuang Sing : > I’ve made a small module that recreates an instance from a csv file created > by Aggregate. I was hoping someone could have a look, tell me if I’m going > at it the wrong way > http://code.google.com/r/general124-import/source/list?name=v1.1.6