I'm using this code to take a picture:
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, TAKE_PICTURE_REQUEST);
After the picture is taken, I need to tap to accept the picture and onActivityResult
can be called before. It was working well.
However, after updating to XE 18.3, after I take a picture, when I tap, the picture never disappears and onActivityResult
doesn't get called. The only way is to swipe down to cancel.
Has anyone met this situation?