I got a problem regarding my app, I have created the camera functionality, but I need that after taking the image, the page should redirect to another activity with having that image.
I have used the following code for camera functionality:
@Override
public void onClick(View v) {
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, CAMERA_REQUEST);
}