scottd1978
Lurker
Has anyone successfully created an AsyncTask class using monodroid? There are numerous java examples out there, but I'm having a real difficult time translating them into C#.
I'm not that familiar with Java programming. The examples in java have a function definition like so:
I'm also getting errors when trying to send Void as an argument to the AsyncTask<String,Void,Void> creation.
Any suggestions on how I could work around creating a background task in monodroid would be greatly appreciated. I've hit a brick wall here and absolutely have to have background threads for my app.
Thanks!
I'm not that familiar with Java programming. The examples in java have a function definition like so:
What the heck is the ellipses? I have no clue how to translate that into C#.protected void onProgressUpdate(Integer... progress)
I'm also getting errors when trying to send Void as an argument to the AsyncTask<String,Void,Void> creation.
Any suggestions on how I could work around creating a background task in monodroid would be greatly appreciated. I've hit a brick wall here and absolutely have to have background threads for my app.
Thanks!