Deprecated “getBitmap” with API 29. Any alternative codes?

前端 未结 9 2238
渐次进展
渐次进展 2020-12-15 20:25

My onActivityResult is not working because getBitmap is deprecated, any alternative codes to achieve this?

here are the codes that needs to

9条回答
  •  情话喂你
    2020-12-15 20:54

    This worked well for me in java

    ImageDecoder.Source source = ImageDecoder.createSource(this.getContentResolver(), pictureUri);
    Bitmap bitmap = ImageDecoder.decodeBitmap(source);
    

提交回复
热议问题