我遇到了一个奇怪的问题,每当我在webbrowser上找到一个MP3文件时,我就会有一个新的asynctask launced,并且每个AsyncTask的列表视图中都有一个进度条。因此下载次数可以超过1次并同时进行。但是现在每当Asynctask推出时,ProgressBar会为所有人移动相同而且对于不同的AsyncTask没有什么不同,Plz引导我.......
public class CopyOfDownloadsListActivity extends ListActivity {
/** Called when the activity is first created. */
// static ArrayList<String> pthreads = new ArrayList<String>();
ImageView bt;
ProgressBar pb;
ListView allList;
TextView tv;
String fileName;
String mp3URL;
URL url2;
int filecount = 0;
private class DownloadFile extends AsyncTask<String, Integer, Void>{
MyCustomAdapter adapter;
int count = 0;
ProgressDialog dialog;
ProgressBar progressBar;
int myProgress;
@Override
protected Void doInBackground(String... u) {
try {
URL ul = new URL(u[0]);
Log.i("UI",ul.toString());
// int len = CopyOfMusicDownloader.mp3urls.size();
// URL url2 = new URL(CopyOfMusicDownloader.mp3urls.get(len-1));
HttpURLConnection c = (HttpURLConnection) ul.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
int lengthOfFile = c.getContentLength();
String PATH = Environment.getExternalStorageDirectory()
+ "/download/";
Log.v("", "PATH: " + PATH);
File file = new File(PATH);
file.mkdirs();
fileName = "Track";
filecount++;
fileName = fileName + Integer.toString(filecount) + ".mp3";
File outputFile = new File(file, fileName);
FileOutputStream fos = new FileOutputStream(outputFile);
InputStream is = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = is.read(buffer)) != -1) {
myProgress = (int)((len1/lengthOfFile)*100);
myProgress = myProgress + myProgress;
Log.i("lengthOfFile", Integer.toString(lengthOfFile));
Log.i("My Progress", Integer.toString(myProgress));
publishProgress(myProgress);
fos.write(buffer, 0, len1);
}
fos.close();
is.close();
}catch (IOException e) {
e.printStackTrace();
}
return null;
}
protected void onPostExecute() {
}
@Override
protected void onPreExecute() {
adapter = new MyCustomAdapter(CopyOfDownloadsListActivity.this, R.layout.row, CopyOfMusicDownloader.mp3urls);
setListAdapter(adapter);
}
@Override
protected void onProgressUpdate(Integer... values) {
Log.i("Value", values[0].toString());
count++;
adapter.notifyDataSetChanged();
}
public class MyCustomAdapter extends ArrayAdapter<String> {
public MyCustomAdapter(Context context, int textViewResourceId, ArrayList<String> pthreads) {
super(context, textViewResourceId, pthreads);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = getLayoutInflater();
View row = inflater.inflate(R.layout.row, parent, false);
bt =(ImageView)row.findViewById(R.id.cancel_btn);
tv =(TextView)row.findViewById(R.id.filetext);
pb = (ProgressBar)row.findViewById(R.id.progressbar_Horizontal);
pb.setProgress(count);
return row;
}
}
}
这是AsyncTask的开始,以及它的onCreate new DownloadFile()。execute(url2.toString());
答案 0 :(得分:4)
另外,请阅读execute()的注释:
http://developer.android.com/reference/android/os/AsyncTask.html#execute%28Params...%29
在Honeycomb之后,只有一个线程运行所有ASyncTasks,因此您可能无法同时运行多个。在第一个之后,其余的将排队,直到第一个完成后才会执行。您可能需要在线程中执行每次下载并使用单个ASyncTask来监视所有这些下载。 (您也可以从线程监视,但您需要采取额外步骤,以便在UI线程上安全地将更新发布到UI)。
答案 1 :(得分:3)
您的问题是static ProgressBar pb;
您不能拥有单个静态引用,并希望控制多个进度条。将ProgressBar完全封装在AsyncTask中,使其成为实例变量。
修改
在onProgressUpdate中,您需要更改ProgressBar的进度。你不需要每行都有一个适配器,这很浪费。
@Override
protected void onProgressUpdate(Integer... values) {
Log.i("Value", values[0].toString());
count++;
progressBar.setProgress(count);
}
你也永远不会分配一个值progressBar,你继续评估pb
,摆脱那个变量!在PreExecute中,您将继续重新分配List的适配器。
您需要进行大量修改。创建一个管理列表视图的适配器。每行都有一个AsyncTask,可以维护自己的进度条,图像视图和文本视图。