I hope this isn\'t a duplicate question but I am making an app that I want a button to open the camera app (the default android camera separately). How do I got about doing
To call the camera you can use:
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); startActivity(intent);
The image will be automatically saved in a default directory.
And you need to set the permission for the camera in your AndroidManifest.xml: