Android App Development: Difference between revisions
Line 18: | Line 18: | ||
} | } | ||
} | } | ||
} catch ( e : Exception) { | } catch (e : Exception) { | ||
println("An exception occurred") | println("An exception occurred") | ||
} | } |
Revision as of 21:01, 10 April 2020
Notes on Android App development
Camera 2 API
Getting Started
val cameraManager = getSystemService(Context.CAMERA_SERVICE) as CameraManager
try {
val cameraIds = manager.cameraIdList
for (id in cameraIds) {
println("Found camera id " + id)
val charac = manager.getCameraCharacteristics(id)
val capabilities = charac.get(CameraCharacteristics.REQUEST_AVAILABLE_CAPABILITIES);
for (capability in capabilities) {
if (capability == CameraMetadata.REQUEST_AVAILABLE_CAPABILITIES_DEPTH_OUTPUT) {
println("Depth is available");
}
}
}
} catch (e : Exception) {
println("An exception occurred")
}