I have to show load GIF image from drawable to ImageView using glide
.I have tried with following.
Glide.with(LoginActivity.this)
.load(getResources().getDrawable(R.drawable.bg_gif)).asGif()
.crossFade()
.into(relativeLayout);
But isn't seem working and it's working when I'm place image in raw
folder.but the problem is I have to use different dimension images.
Any help would be greatly appreciated.