Wired Image Loading Issue In Picasso
I am using Picasso whose dependency is added in the gradle file compile 'com.squareup.picasso:picasso:2.5.2' This is My class public class ImageLoader { private Picasso mPicas
Solution 1:
Try Glide library. I had the same problem using Picasso.
Libraries to include
dependencies {
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.android.support:support-v4:22.0.0'
}
Glide.with(context)
.load("http://inthecheesefactory.com/uploads/source/glidepicasso/cover.jpg")
.into(ivImg);
Solution 2:
It looks like your wifi on mobile don't has access to fetch those images,
so most probably a access permission issue
Post a Comment for "Wired Image Loading Issue In Picasso"