I have a vector image. If I want to set the image to ImageView, the picture is not loaded.
code:
Glide.with(this).load(R.drawable.vector_image).into(imageView)
However, when I use:
imageView.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.vector_image))
and it is working.
Any ideas?