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
Post a Comment