private class DownloadLargeFileTask extends AsyncTask<Void, Void, Void>
{
private final ProgressDialog dialog;
public DownloadLargeFileTask(ProgressDialog dialog) {
this.dialog = dialog;
}
protected void onPreExecute() {
dialog.show();
}
protected void onPostExecute(Void unused) {
dialog.dismiss();
}
@Override
protected Void doInBackground(Void... arg0) {
download();
return null;
}
}
private void download ()
{
try
{
long startTime = System.currentTimeMillis();
URL u = new URL("http://mds.podfm.ru/188/download/040_Sergejj_Palijj_-_Karantin_CHast_2.mp3");
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
FileOutputStream f = new FileOutputStream(new File("/sdcard/","my.mp3"));
InputStream in = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
int downloadedSize = 0;
while ( (len1 = in.read(buffer)) != -1 )
{
f.write(buffer,0, len1);
downloadedSize += len1;
ReturnDownloadedBytes(downloadedSize);
}
f.close();
Log.d("ImageManager", "download ready in" + ((System.currentTimeMillis() - startTime) / 1000) + " sec");
}
catch (IOException e)
{
Log.d("ImageManager", "Error" + ((System.currentTimeMillis()) / 1000) + e + " sec");
}
}
private void ReturnDownloadedBytes(int size)
{
text.setText(String.valueOf(size));
}
错误说明:只有创建视图层次结构的原始线程才能触摸其视图。我认为这意味着我从一个地方创建文本视图,并试图从另一个(AsyncTask)获得访问权,但是如何获得它呢?谢谢
编辑
这是所有密码。但是,即使我发送publishProgress(downloadedSize) int value = 10
,它也会在text.setText(String.valueOf(progress));
中输出不同的值,比如[Ljava.lang.float;@43ed62f78
public class list extends Activity {
private TextView text;
@Override
public void onCreate(Bundle icicle)
{
super.onCreate(icicle);
setContentView(R.layout.main);
text = (TextView)findViewById(R.id.result);
}
public void selfDestruct(View view) {
ProgressDialog dialog = new ProgressDialog(this);
dialog.setMessage("????????. ?????...");
new DownloadLargeFileTask(dialog).execute();
}
private class DownloadLargeFileTask extends AsyncTask<Void, Integer, Void>
{
private final ProgressDialog dialog;
public DownloadLargeFileTask(ProgressDialog dialog) {
this.dialog = dialog;
}
protected void onPreExecute() {
dialog.show();
}
protected void onPostExecute(Void unused) {
dialog.dismiss();
}
protected void onProgressUpdate(Integer...progress) {
text.setText(String.valueOf(progress));
}
@Override
protected Void doInBackground(Void... arg0) {
try
{
long startTime = System.currentTimeMillis();
URL u = new URL("http://mds.podfm.ru/188/download/040_Sergejj_Palijj_-_Karantin_CHast_2.mp3");
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
FileOutputStream f = new FileOutputStream(new File("/sdcard/","my.mp3"));
InputStream in = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
int downloadedSize = 10;
while ( (len1 = in.read(buffer)) != -1 )
{
f.write(buffer,0, len1);
//downloadedSize += len1;
**publishProgress(downloadedSize);**
}
f.close();
Log.d("ImageManager", "download ready in" + ((System.currentTimeMillis() - startTime) / 1000) + " sec");
}
catch (IOException e)
{
Log.d("ImageManager", "Error" + ((System.currentTimeMillis()) / 1000) + e + " sec");
}
return null;
}
}
发布于 2011-03-12 05:50:23
你对错误的评估是正确的。我假设text
是在Activity
中定义的TextView
对象,因此它是在UI线程中创建的。在doInBackground()
中运行的代码在单独的线程中运行。只有UI线程才能执行UI元素的更新,所以当您试图调用setText
时,会得到您报告的错误消息。
Abhinav在如何解决这个问题方面也是正确的,因为AsyncTask
有一个方法,您可以调用该方法将更新从后台线程发送到UI线程:publishProgress
,它调用onProgressUpdate()
。
将此方法添加到AsyncTask
中
@Override
protected void onProgressUpdate(Integer... integer){
text.setText(integer[0].toString());
}
并在while
中更改download()
循环
while ( (len1 = in.read(buffer)) != -1 )
{
f.write(buffer,0, len1);
downloadedSize += len1;
publishProgress(downloadedSize);
}
发布于 2011-03-12 01:50:03
您可以通过将进度发布到UI线程来更改UI。从publishProgress从doInBackground打电话。这将从您可以更新UI的地方调用onProgressUpdate在您的AsyncTask中。
您必须在您的onProgressUpdate中定义AsyncTask。http://developer.android.com/reference/android/os/AsyncTask.html#onProgressUpdate(Progress
https://stackoverflow.com/questions/5281740
复制相似问题