我正在研究asynctask。在那我一个接一个地下载文件。如果下载了一个文件然后我使用service调用第二个文件在Asynctask下载。它工作正常但除了文件/ Asynctask1,所有其他asynctask暂停并在SD卡中制作0kbps文件所以,我怎么能决定下载所有文件&执行所有asynctask?
Synario:
Async1{
downloading file1: it works fine & file downloaded
oncomplete(){
Async2();
}
}
Async2{
download file2:fail & file downloaded as 0kbps
oncomplete(){
Async3();
}
}
Async3{
downloading file3:fail & file downloaded as 0kbps
oncomplete(){
exit;
}
}