This maybe a silly question, but I was wondering how to pass multiple
parameters to AsyncTask

I have somthing like :

private class DownloadTask extends AsyncTask < ArrayList, int [],
Cursor, void, void> {
             protected ArrayList<ThreadHolder> doInBackground(ArrayList
<ThreadHolder> lst, int [] _thread_keys, Cursor c) {
                return  selectThreads2(lst, _thread_keys, c);
             }


I would like to pass in the 3 parameters , I am not sure (1) if it is
possible and (2) what the syntax would be

Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to