我想在Android应用程序中像urgur app一样从url播放动画gif.Imagur非常棒,非常快.我正在使用webview加载gif,但它没有达到标记.
你可以使用Glide来玩gif ImageView
.所以,让我们将它添加到你的应用程序的gradle中:
repositories { mavenCentral() } dependencies { compile 'com.github.bumptech.glide:glide:3.6.1' compile 'com.android.support:support-v4:23.1.1' }
然后,创建一个ImageView
:
在您的活动中:
Glide .with(context) // replace with 'this' if it's in activity .load("http://www.google.com/.../image.gif") .asGif() .error(R.drawable.error_image) // show error drawable if the image is not a gif .into(R.id.imageView);
有关更多信息,请打开此文章Glide - 显示GIF和视频.