ImageView imageView=findViewById(R.id.imageView)
if you have image in drawable folder then use
imageView.setImageResource(R.drawable.imageView)
if you have uri and want to display it in imageView then use
imageView.setImageUri("uri")
if you have bitmap and want to display it in imageView then use
imageView.setImageBitmap(bitmap)
note:- 1. imageView.setImageDrawable()
is now deprecated in java
2. If image uri is from firebase or from any other online link then use
Picasso.get()
.load("uri")
.into(imageView)
(https://github.com/square/picasso)
or use
Glide.with(context)
.load("uri")
.into(imageView)