【发布时间】:2017-03-15 14:02:32
【问题描述】:
在从网络加载图像时,是否可以使用 Handler(我故意不想使用 AsyncTask)更新水平(确定)ProgressDialog?如果是这样,我该怎么做?
这是 try 块:
URL url = new URL(link);
HttpURLConnection httpCon = (HttpURLConnection)url.openConnection();
if(httpCon.getResponseCode()!=200) return;
InputStream inputStream = httpCon.getInputStream();
Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
imageView.setImageBitmap(bitmap);
【问题讨论】:
标签: java android progressdialog android-progressbar