I have a database component that relies on AsyncTask
to retrieve data. Once used in the application it will always be called from the UI thread, but how do I do tha
Android.OS.Handler should be able to update the ui.
To use a handler you have to subclass it and overide handleMessage() to process messages
Update:
I am using monodroid, so I dont know if this is completely translatable, But,
You may be able to use
new Handler(context.getMainLooper()).post(runnable);