I'm using latest universal-image-loader-1.9.2-SNAPSHOT-with-sources.jar file. Its working fine. I want to change image to round(Circle). I have used following display options.
DisplayImageOptions userimgoptions = new DisplayImageOptions.Builder()
.displayer(new RoundedBitmapDisplayer(35))
.showImageOnLoading(android.R.color.transparent)
.showImageForEmptyUri(R.drawable.picture_info_profile_img)
.showImageOnFail(R.drawable.picture_info_profile_img)
.cacheInMemory(true).cacheOnDisc(true)
.bitmapConfig(Bitmap.Config.RGB_565).build();
its not working for some images. I have tested this into low and high resolution its not working.
Note : In my xml Imageview height and with(55 * 55).
please kindly help me how to resolve this issue. i cant resolve this issue.
Thanks,
If you want a circular image you can change .displayer(new RoundedBitmapDisplayer(25))
to .displayer(new RoundedBitmapDisplayer(1000))
which worked for me.