Edited:
glide
to load images. I\'m getting Out of
I faced the similar problem . I am sharing the way I solved it . Create a folder named drawable-nodpi
put your golive_load_image
and golive_cancel_image
file into that folder , and remove those two image file from other place like drawable-ldpi
,drawable-hdpi
etc (if you have there ) . And add skipMemoryCache( true )
Glide.with(context).load(rowItem.getPosteduserpostimage())
.skipMemoryCache( true )
.placeholder(R.drawable.golive_load_image).error(R.drawable.golive_cancel_image)
.override(600, 200)
.into(holder.ivPostedImage);