Hi,
I guess this matches with the feature request issue we have created at
https://issuetracker.google.com/issues/477810106?
I don't think there's any easy way to do this for users with the current public APIs of CameraX, we will need to add a new API. Just from the top of my head, I am thinking it can be new overloads of the
FocusMeteringAction.Builder#Builder and
FocusMeteringAction.Builder#addPoint functions which accept a `lockingMode` in addition. For example,
```
cameraControl.startFocusAndMetering(
FocusMeteringAction.Builder(
point,
lockingMode = FLAG_AF or FLAG_AE or FLAG_AWB // Default is just FLAG_AF
)
.build()
)
```
What do you think? Does this satisfy your requirements?