I am using Universal Image loader for loading image from server but i am getting one issue while loading an image URL which contains ampersand (&). Its loading only before part of ampersand.
This universalimageloader version i am using
'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
this is my code
mImageLoader = ImageLoader.getInstance();
imageOptions = new DisplayImageOptions.Builder()
.showImageForEmptyUri(R.drawable.img_no_image_screen3)
.showImageOnFail(R.drawable.img_no_image_screen3)
.showImageOnLoading(R.drawable.img_no_image_screen3)
.cacheInMemory(true)
.build();
mImageLoader.displayImage(productInfo.getProductImage(),
productImage, imageOptions, this )
this is my url which i want to load , but loading this url
this is perfectly loading other image URL only getting issue with above attacked URL. Can any tell me how to resolve this issue?
Use
Picasso:Don't forget to add this
to your Gradle.