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

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -