如何在Android上的Glide中显示Gif图像

时间:2017-03-11 08:02:50

标签: android android-glide

我希望在https://www.googleapis.com/auth/drive库中显示 Gif 图片。我写下面的代码但是在显示我的gif时,显示非常慢动作。我想显示gif通常比特率而不是慢动作。

storage.json

怎么可能?

1 个答案:

答案 0 :(得分:1)

试试这个

ImageView test = (ImageView) findViewById(R.id.testImageGif);
    Glide  
    .with(this)
    .load(R.drawable.login_image)
    .asGif()
    .into(test);