Recycler NetworkImageView Scrolling back and forward, out of memory and resizing issues
问题 I am working to add an image from the gallery horizontally using recycler view as follows. I could able to add images next to each other. The following code works but crashes sometimes because of out of memory concerns. RecyclerViewAdapter , I am calling setSelectedPic method to load the image. @Override public void onBindViewHolder(final ListViewHolder holder, int position) { PostProductImageLIst item = mItems.get(position); ImageUtil.setSelectedPic(holder.imgViewIcon, item.getPath()); }