要下载许多活动中的某些文件,我认为将所有相同的代码集成到一个活动中会更好得多,例如(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 的原因是因为它已被弃用,所以最好使用不会阻止用户与用户界面进行交互的Progressbar。
我听说使用服务是答案之一,但是我无法用任何方式更新进度条。
答案 0 :(得分:0)
您可能已经知道,服务在后台线程上运行,因此您没有机会更新进度条。
但是,作为替代方案,您可以使用“通知”部分上的进度栏,例如youtube在查看离线视频或下载任何视频时的操作方式。
另一方面,使用一个DownloadFiles.class的想法很棒。因此,为什么在活动打开并显示进度栏,更新视图等时不打电话?
也不需要服务。
答案 1 :(得分:0)
您还可以像这样将回调值传递给AsyncTask:
private class DownloadFiles extends AsyncTask<String, Integer, String> {
private Context context;
private PowerManager.WakeLock mWakeLock;
private ProgressCallback mProgressCallback
public DownloadFiles(Context context, ProgressCallback callback) {
this.context = context;
mProgressCallback = callback
}
然后您创建一个像这样的界面:
public interface ProgressCallback{
void onProgressUpdate(int percentComplete);
让所有需要显示进度的活动或片段都实现此接口,然后您可以在asyncTask中从onProgressupdate调用:
@Override
protected void onProgressUpdate(Integer... progress) {
super.onProgressUpdate(progress);
mProgressCallback.onProgressUpdate(progress[0])
}
您可以随意调整界面和方法。