Android 显示GIF图片

1、添加Glide依赖

compile 'com.github.bumptech.glide:glide:3.7.0'

2、加载GIF图片

imageView = (ImageView)findViewById(R.id.testimage);

Glide.with(this)
        .load("http://guolin.tech/test.gif")//gif图片
        .into(imageView);

猜你喜欢

转载自blog.csdn.net/meixi_android/article/details/82143747
今日推荐