ythy / blog

Give everything a shot
6 stars 0 forks source link

Android Warning: getExternalStorageDirectory is deprecated #508

Open ythy opened 1 year ago

ythy commented 1 year ago

Environment.getExternalStorageDirectory() is deprecated

Changed to requireActivity().getExternalFilesDir()

MediaStore.Images.Media.getBitmap() is deprecated

Code required API28

val bmp = ImageDecoder.createSource(requireContext().contentResolver, Uri.fromFile(file))
imageView.setImageBitmap(ImageDecoder.decodeBitmap(bmp))

506