I am using following code to create an AsyncTask.
public class SaveFileToExternalStorage extends AsyncTask<File, Void, Boolean>{
protected Boolean doInBackground(File... file) {
DalCategories c= new DalCategories();
boolean result = c.saveObject(customlistobject,file[0]);
return result;
}
protected void onProgressUpdate() {
//setProgressPercent(progress[0]);
}
protected void onPostExecute(boolean result) {
//showDialog("Downloaded " + result + " bytes");
}
}
Now I want to pass it two parameters customlistobject and File objects with void progress and boolean return type.
I don't know how to pass that customlistobject to my AsyncTask along with the File object.