Open JuneRk opened 6 years ago
Hello. When loading images from server using HashMap<String,String>, large images are not appearing in slider. Only images of size less than 2 MB are showing up in slider.
for(optionIndex=0;optionIndex<detailPictures.length;optionIndex++) { url_maps.put("Gallery"+optionIndex,url+detailPictures[optionIndex % detailPictures.length]+".jpg"); }
for(String name : url_maps.keySet()){ DefaultSliderView SliderView = new DefaultSliderView(this); SliderView .image(url_maps.get(name)) .setScaleType(BaseSliderView.ScaleType.Fit); imageSlider.addSlider(SliderView); }
Have same problem!
same here, and the "ImageLoadListener" not working either to detect this issue in code
i 've same issue
same problem is there any solution?
Hello. When loading images from server using HashMap<String,String>, large images are not appearing in slider. Only images of size less than 2 MB are showing up in slider.
for(optionIndex=0;optionIndex<detailPictures.length;optionIndex++) { url_maps.put("Gallery"+optionIndex,url+detailPictures[optionIndex % detailPictures.length]+".jpg"); }