缓存Zoomable Web Image

时间:2013-09-06 08:04:49

标签: java android universal-image-loader aquery

Aquery

Zoomable Web Image 除了ImageView之外,还可以使用WebView显示图像以及对WebView的缩放支持的Android版本。图像将居中并根据其方向填充webview的宽度或高度。

我用,

        String url1 = "file:///mnt/sdcard/image.jpg";
            aq.id(R.id.webView1).progress(R.id.progress).webImage(url1);

我注意到即使我切断连接并重新打开该应用程序,图像仍会显示。它被缓存了吗?我查看了它的SD卡文件夹,没有。我想利用缓存的图像而不是多次获取它。

另外,我都使用Universal-Image-Loader和Android Query。如果他们都可以读取缓存的图像,我只是担心。

       //Aquery
       //returns the cached file by url, returns null if url is not cached
       File file = aq.getCachedFile(url);

1 个答案:

答案 0 :(得分:0)

每次通话时都会下载url1   aq.id(R.id.webView1).progress(R.id.progress).webImage(URL1);

您的缓存文件正在返回到文件文件对象,但您没有在

中使用它