0

我想编写一个显示来自 Cherokee 网络服务器的图像的应用程序。我使用以下代码下载图像:

@Override
protected Bitmap doInBackground(URL... params) { 
    URL urlToDownload = params[0];
    String downloadFileName = urlToDownload.getFile();
    downloadFile = new File(applicationContext.getCacheDir(), downloadFileName);
    new File(downloadFile.getParent()).mkdirs(); // create all necessary folders

    // download the file if it is not already cached
    if (!downloadFile.exists()) {
        try {
            URLConnection cn = urlToDownload.openConnection();   
            cn.connect();
            cn.setReadTimeout(5000);
            cn.setConnectTimeout(5000);
            InputStream stream = cn.getInputStream();

            FileOutputStream out = new FileOutputStream(downloadFile);   
            byte buf[] = new byte[16384];
            int numread = 0;
            do {
                numread = stream.read(buf);   
                if (numread <= 0) break;   
                out.write(buf, 0, numread);
            } while (numread > 0);
            out.close();
        } catch (FileNotFoundException e) {
            MLog.e(e);
        } catch (IOException e) {
            MLog.e(e);
        } catch (Exception e) {
            MLog.e(e);
        }
    }

    if (downloadFile.exists()) {
        BitmapFactory.Options options = new BitmapFactory.Options();
        options.inSampleSize = 16;
        return BitmapFactory.decodeFile(downloadFile.getAbsolutePath(), options);   
    } else {
        return null;
    }
}

这可行,但由于我需要下载的图像非常大(数兆字节),用户需要一些时间才能看到任何东西。

我想在加载完整图像时显示图像的低分辨率预览(就像任何网络浏览器一样)。我怎样才能做到这一点?BitmapFactory 似乎只接受在解码之前完全下载的完全加载的文件或流。

服务器上只有高分辨率图像。我只想显示我在下载时已经下载的图像的所有内容,以便在完全下载之前显示(部分)图片。这样,用户一发现这不是他正在寻找的图片,就可以中止下载。

4

2 回答 2

0

那么最简单的方法就是下载两个图像。一个很小的(比如说几个字节)然后放大它(它看起来很糟糕,但会给出进度的概念),同时在后台加载更大的图像。很可能小一个会首先返回,您将能够使它看起来好像从低分辨率变为高分辨率。

于 2013-02-23T16:38:32.323 回答
0

2 AsyncTask 怎么样?第一个下载小或低分辨率图像并将其显示在 ImageView 上,然后第一个 AsyncTask 调用第二个 AsyncTask 下载全分辨率图像。

于 2013-02-24T11:15:09.733 回答