How to show gif image in ImageView in android? -


i tried picaso library, not showing gif image. getting images json. tried following code :-

picasso.with(mcontext).load( stationwithstate.station.getlogo()).transform(transformation).placeholder(r.drawable.ic_launcher).into(viewholder.stationimageview[i]); 

please me ?

ok after doing google found out library in showing gif image json link

ion.with(viewholder.stationimageview[i])                         .placeholder(r.drawable.ic_launcher)                         .error(r.drawable.ic_launcher)                         .fitcenter()                         .load(stationwithstate.station.getlogo()); 

Comments

Popular posts from this blog

html - Firefox flex bug applied to buttons? -

html - Missing border-right in select on Firefox -

python - build a suggestions list using fuzzywuzzy -