You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello can you help me, I'm trying to animate GIF in a custom target but it display as static:
val request = ImageRequest.Builder(context) .data("https://example.com/image.jpg") .target( onSuccess = { result -> view.setImageDrawable(result) } ) .build()
But if I set like this, GIF is working
val request = ImageRequest.Builder(context) .data("https://example.com/image.jpg") .target(view) .build()
is there other way to play GIF in a custom target?
Update: Already solved
Beta Was this translation helpful? Give feedback.
All reactions