如何访问图像采用的是Android通用图像加载器加载的高度和宽度?
Answer 1:
当图像使用ImageLoadingListener加载你可以得到图像的位图:
imageLoader.displayImage(imageUrl, imageView, [options], new SimpleImageLoadingListener() {
@Override
public void onLoadingComplete(Bitmap loadedImage) {
int width = loadedImage.getWidth();
int height = loadedImage.getHeight();
//...
}
});
文章来源: How to get height and width of image with Android Universal Image Loader?