Imageview Loading High Resolution Image As Very Poor Quality
I am using a ListFragment to display a ListView of Lazy Loaded ImageView objects using the Android Universal Image Loader. The correct data is coming from my datasource and I have
Solution 1:
The pictures appear to be down scaled. Looking at that library the default functionality is power of 2 image sampling. I would reckon this is source of your issue.
For instance:
DisplayImageOptionsopts=newDisplayImageOptions.Builder().imageScaleType(ImageScaleType.NONE).build();
imageLoader.DisplayImage(item.imageUrlExtraLarge, imageView, opts);
Post a Comment for "Imageview Loading High Resolution Image As Very Poor Quality"