My layout have lots of imageviews. I want to show .gif animated file in just one imageview. I tried Yash method (Adding gif image in an ImageView in android) but .gif file s
Use Glide(https://github.com/bumptech/glide):
GlideDrawableImageViewTarget imageViewTarget = new GlideDrawableImageViewTarget(imageview); Glide.with(this).load(R.raw.mygif).into(imageViewTarget);