Android data.getData() returns null from CameraActivity for some phones

前端 未结 2 1121
时光取名叫无心
时光取名叫无心 2020-12-20 21:53

I have a fatal error occurring in my onActivityResult coming back from a camera activity. What has me scratching my head is that the error is only happening on a handful of

2条回答
  •  温柔的废话
    2020-12-20 22:17

    if(resultCode == RESULT_OK){

                    Bitmap bitmap = (Bitmap) imageReturnedIntent.getExtras().get("data");
                    imageView.setImageBitmap(bitmap);
                }
    

提交回复
热议问题