I have a recycleView with 50 block. The block has two ImageView. I should set two images to every block from different URL. And when I start my program I flipping the list, my program slows down. I think it inhibits becouse of when I scroll the list recyclerView go to URL again to take images. Am I right? And how I can fix it?
It is how I set image to recyclerView from URL
URL newurl = new URL(imageString);
Bitmap mIcon_val = BitmapFactory.decodeStream(newurl.openConnection().getInputStream());
holder.myImageView.setImageBitmap(mIcon_val);