Могу ли я изменить .gif файл, чтобы он был растровым с помощью Glide?
Я пытаюсь загрузить gif в растровое изображение, но он показывает статическое изображение.
Glide.with(context)
.asBitmap()
.load(R.drawable.image)
.into(object : CustomTarget<Bitmap>() {
override fun onResourceReady(bitmap: Bitmap,transition: Transition<in Bitmap>?) {
remoteViews.setImageViewBitmap(R.id.testImage, bitmap)
appWidgetManager.updateAppWidget(appWidgetId, remoteViews)
}
override fun onLoadCleared(placeholder: Drawable?) {
// this is called when
// imageView is cleared on lifecycle call or for
// some other reason.
// if you are referencing the bitmap somewhere else too other than this imageView
// clear it here as you can no longer have the bitmap
}
})