如何将全尺寸图像加载到图像视图

How to load full size image to imageview

我尝试构建简单的 "cameraIntet" 并将全尺寸图像从该相机加载到图像视图,我构建与文档中的示例相同的代码(全尺寸图像文档) https://developer.android.com/training/camera/photobasics

这是我的 onActivityResult 代码

  Override fun onActivityResult(...){
         Super.onActivityResults(...)
          If(requestCode == 1){
                val bitmap = BitmapFactory.decodeFile(currentPhotoPath)
                Img_imageview.setImageBitmap(bitmap)
           }
     }

并且当我 运行 代码然后拍照时,imageview 只是空白并且不显示图片,

那么,如何将全尺寸图像显示到 imageview?

你也许想试试 https://github.com/davemorrissey/subsampling-scale-image-view 它可以处理非常大的图像。