I'm trying to build an app which displays .jpg, .png, .webm and .gif (also animated) in a ListView from a URL. I receive the URL via a JSON request. I managed to receive the JSON response and the Image/WebM/Gif URL via Volley and tried to display it via ImageLoader in a NetworkImageView. JPG and PNG work fine but WebM and Gif wont playback. WebM wont even show a frame as Gif does (first frame only). Then I tried it with Picasso and a normal ImageView. Same results. JPG and PNG work but the other two wont. Does anybody have an idea how I can load WebM and Gif form a URL to a ImageView or NetworkImageView which later will be inside a ListView?
I thought about using WebView but as I dont have much experience with it I don't really know if it's good for the performance to have multiple WebViews in a ListView.
I hope somebody has an idea. Thanks in advance.