Skip to content Skip to sidebar Skip to footer

Which Kind Of Device Sopport Info_supported_hardware_level_full?

I need try to set manually exposure time and iso. I found that answer on stack, which explain that the first we need to check if divice support HARDWARE_LEVEL_FULL and if yes it m

Solution 1:

All FULL devices will support manual controls (and no LEGACY device will support manual controls), so that's all correct.

However, there may be some LIMITED-level devices that do support manual controls. The more specific check is looking for the MANUAL_SENSOR capability.

Unfortunately, a large number of Android devices are still using older camera HALs, and can only support the LEGACY level through the camera2 API. They may have vendor custom implementations for adjusting sensitivity, etc, via the old camera API, but those are not standard or documented in general.

Post a Comment for "Which Kind Of Device Sopport Info_supported_hardware_level_full?"