Photo by Camera Upload Exception (Firebase Storage)

后端 未结 3 2009
时光说笑
时光说笑 2021-01-25 04:28

I\'m trying to upload an image taken by the camera in an android application to Firebase storage. The problem is that after I take the picture, in the confirmation activit

3条回答
  •  轮回少年
    2021-01-25 04:48

    if(requestCode == CAMERA_REQUEST && resultCode == RESULT_OK){
            Bitmap mImageUri = (Bitmap) data.getExtras().get("data");
            select.setImageBitmap(mImageUri);
        }
    

    then start posting

提交回复
热议问题