Android.Provider.MediaStore.ActionImageCapture Field
Standard Intent action that can be sent to have the camera application capture an image and return it.

Syntax

[Android.Runtime.Register("ACTION_IMAGE_CAPTURE")]
public const string ActionImageCapture

See Also

MediaStore.ExtraOutput

Remarks

Standard Intent action that can be sent to have the camera application capture an image and return it.

The caller may pass an extra EXTRA_OUTPUT to control where this image will be written. If the EXTRA_OUTPUT is not present, then a small sized image is returned as a Bitmap object in the extra field. This is useful for applications that only need a small image. If the EXTRA_OUTPUT is present, then the full-sized image will be written to the Uri value of EXTRA_OUTPUT. As of NoType:android/os/Build$VERSION_CODES;Href=../../../reference/android/os/Build.VERSION_CODES.html#LOLLIPOP, this uri can also be supplied through Android.Content.Intent.ClipData. If using this approach, you still must supply the uri through the EXTRA_OUTPUT field for compatibility with old applications. If you don't set a ClipData, it will be copied there for you when calling Android.Content.Context.StartActivity(Android.Content.Intent).

[Android Documentation]

Requirements

Namespace: Android.Provider
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 3