CameraCharacteristics.AvailablePhysicalCameraRequestKeys Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a subset of #getAvailableCaptureRequestKeys
keys that can
be overridden for physical devices backing a logical multi-camera.
public System.Collections.Generic.IList<Android.Hardware.Camera2.CaptureRequest.Key>? AvailablePhysicalCameraRequestKeys { [Android.Runtime.Register("getAvailablePhysicalCameraRequestKeys", "()Ljava/util/List;", "", ApiSince=28)] get; }
[<get: Android.Runtime.Register("getAvailablePhysicalCameraRequestKeys", "()Ljava/util/List;", "", ApiSince=28)>]
member this.AvailablePhysicalCameraRequestKeys : System.Collections.Generic.IList<Android.Hardware.Camera2.CaptureRequest.Key>
Property Value
List of keys that can be overridden in individual physical device requests. In case the camera device doesn't support such keys the list can be null.
- Attributes
Remarks
Returns a subset of #getAvailableCaptureRequestKeys
keys that can be overridden for physical devices backing a logical multi-camera.
This is a subset of android.request.availableRequestKeys which contains a list of keys that can be overridden using CaptureRequest.Builder#setPhysicalCameraKey
. The respective value of such request key can be obtained by calling CaptureRequest.Builder#getPhysicalCameraKey
. Capture requests that contain individual physical device requests must be built via android.hardware.camera2.CameraDevice#createCaptureRequest(int, Set)
.
The list returned is not modifiable, so any attempts to modify it will throw a UnsupportedOperationException
.
Each key is only listed once in the list. The order of the keys is undefined.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.