单击按钮时,我需要默认打开前置摄像头,但后置摄像头正在显示。请告诉我如何打开前置摄像头。
这是我的代码:
POST("wishlists", parameters: parameters, progress: nil, success: { sessionDataTask, response in
}) { sessionDataTask, error in
//here in failure block I need access to the response body
}
答案 0 :(得分:1)
以下代码应该有效(无意图)。请参阅this
Camera.CameraInfo cameraInfo = new Camera.CameraInfo();
int cameraCount = Camera.getNumberOfCameras();
for (int camIdx = 0; camIdx < cameraCount; camIdx++) {
Camera.getCameraInfo(camIdx, cameraInfo);
if (cameraInfo.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
try {
cam = Camera.open(camIdx);
} catch (RuntimeException e) {
Log.e(TAG, "Camera failed to open: " + e.getLocalizedMessage());
}
}
}
如果您想使用意图检查此link。我认为此解决方案可能不适用于所有手机。请查看官方doc以获取更多参考。我建议您不应该关心什么相机用来。这取决于您要调用的第三方相机应用程序。