Why my image not getting displayed in imageView?
    var image : Bitmap?=null
    longToast(obj?.image?.url.toString())
    try {
        image = BitmapFactory.decodeFile(obj?.image?.url.toString())
        imagePhoto.setImageBitmap(image)
        longToast("abc")
    } catch (e: Exception) {
        e.message
    }
The image is not null as I saw the toast displayed 
https://...../tempory.jpg
 
    