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

时间:2019-07-28 17:45:35

标签: android-studio kotlin camera android-camera-intent

我尝试构建简单的“ cameraIntet”并将全尺寸图像从该相机加载到imageview,我构建了与文档示例相同的代码(全尺寸图像文档)   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中显示完整尺寸的图像?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

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