我希望在https://www.googleapis.com/auth/drive
库中显示 Gif 图片。我写下面的代码但是在显示我的gif时,显示非常慢动作。我想显示gif通常比特率而不是慢动作。
storage.json
怎么可能?
答案 0 :(得分:1)
试试这个
ImageView test = (ImageView) findViewById(R.id.testImageGif);
Glide
.with(this)
.load(R.drawable.login_image)
.asGif()
.into(test);