次のコードを使用してAsyncTask
を作成しています。異なるオブジェクトをパラメータとしてAsycTaskに渡すにはどうすればいいですか?
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");
}
}
は今、私はそれを二つのパラメータcustomlistobject
ボイド進歩とboolean
戻り値の型を持つFile
オブジェクトを渡したいです。
customlistobject
をにFile
オブジェクトとともに渡す方法がわかりません。