Чтобы загрузить некоторые файлы для множества видов деятельности, я подумал, что будет гораздо лучше объединить все одни и те же коды в одно действие, например (DownloadFiles.class), но здесь есть проблема. Я должен получить значение прогресса в моей основной деятельности (SetupActivity.class), это невозможно сделать с помощью AsyncTask. Оригинальный код был:
private class DownloadFiles extends AsyncTask<String, Integer, String> {
private Context context;
private PowerManager.WakeLock mWakeLock;
public DownloadFiles(Context context) {
this.context = context;
}
@Override
protected String doInBackground(String... input_value) {
InputStream input = null;
OutputStream output = null;
HttpURLConnection connection = null;
try {
URL url = new URL(input_value[0]);
connection = (HttpURLConnection) url.openConnection();
connection.connect();
int fileLength = connection.getContentLength();
input = connection.getInputStream();
output = new FileOutputStream(new File(input_value[1]));
byte data[] = new byte[4096];
long total = 0;
int count;
while ((count = input.read(data)) != -1) {
if (isCancelled()) {
input.close();
return null;
}
total += count;
if (fileLength > 0)
publishProgress((int) (total * 100 / fileLength));
output.write(data, 0, count);
}
} catch (Exception e) {
return e.toString();
} finally {
try {
if (output != null) output.close();
if (input != null) input.close();
} catch (IOException ignored){
ignored.printStackTrace();
}
return "Download Complete.";
}
}
@Override
protected void onPreExecute() {
super.onPreExecute();
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
getClass().getName());
mWakeLock.acquire();
}
@Override
protected void onProgressUpdate(Integer... progress) {
super.onProgressUpdate(progress);
}
@Override
protected void onPostExecute(String result) {
mWakeLock.release();
if (!result.equals("Download Complete.")) {
} else {
}
}
}
Не удалось использовать onProgressUpdate для обработки индикатора выполнения других действий. Причина, по которой я не использую ProgressDialog , заключается в том, что он устарел, поэтому гораздо лучше использовать панель прогресса, которая не препятствует взаимодействию пользователя с пользовательскими интерфейсами.
Я слышал, что использование сервисов - один из ответов, но нет никаких способов обновить прогрессбар, насколько мне известно.