ParseImageView是否在Android中缓存ParseFile。如果它缓存parseFile,我如何在我的Android设备中找到这些文件的路径。
ParseImageView imageView = (ParseImageView) findViewById(android.R.id.icon);
// The placeholder will be used before and during the fetch, to be replaced by the fetched image
// data.
imageView.setPlaceholder(getResources().getDrawable(R.drawable.placeholder));
imageView.setParseFile(file);
imageView.loadInBackground(new GetDataCallback() {
@Override
public void done(byte[] data, ParseException e) {
Log.i("ParseImageView",
"Fetched! Data length: " + data.length + ", or exception: " + e.getMessage());
}
});
答案 0 :(得分:15)
看起来@suresh kumar已经死了,所以这个问题已经解决了“no”,但遇到了这个问题我想在这里删除一些代码来解决它。
我使用Universal Image Loader进行URL图像加载,它支持许多用于缓存和显示的配置选项。使用(在撰写本文时)在Application类中进行设置:
//Create image options.
DisplayImageOptions options = new DisplayImageOptions.Builder()
.showImageOnLoading(R.drawable.button_default)
.cacheInMemory(true)
.cacheOnDisc(true)
.build();
//Create a config with those options.
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext())
.defaultDisplayImageOptions(options)
.build();
ImageLoader.getInstance().init(config);
然后将其与Parse一起使用,您可以在其中加载和缓存图像:
ParseImageView itemImage = (ParseImageView) v.findViewById(R.id.iv_item);
ParseFile photoFile = item.getParseFile("picture");
if (photoFile != null) {
//Get singleton instance of ImageLoader
ImageLoader imageLoader = ImageLoader.getInstance();
//Load the image from the url into the ImageView.
imageLoader.displayImage(photoFile.getUrl(), itemImage);
}
希望有所帮助。
答案 1 :(得分:2)