I'm reading Android's Camera API documentation about camera API, this is my first ever use of the API. I came accross to some code lines where integers MEDIA_TYPE_IMAGE is being invoked, one of them are:
// create a file to save the image
fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE);
Does this mean like, 1 represents type of file that the camera produces, which is an image ? Or this just represents like true for activing the camera?