我实现了具有 3 种状态的相机:自拍(正面)、背面和关闭。
除了“关闭”状态外,这一切都有效。
我正在使用 camera2,它显示在 TextureView 上:
<TextureView
android:id="@+id/texture_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
预期:选择“关闭”状态时,我想关闭相机并显示黑屏。
实际:在“关闭”状态下,显示摄像机最后看到的帧。
closeCamera 方法:
private void closeCamera() {
try {
mCameraOpenCloseLock.acquire();
closePreviewSession();
if (null != mCameraDevice) {
mCameraDevice.close();
mCameraDevice = null;
}
if (null != mMediaRecorder) {
mMediaRecorder.release();
mMediaRecorder = null;
}
} catch (InterruptedException e) {
throw new RuntimeException("Interrupted while trying to lock camera closing.");
} finally {
mCameraOpenCloseLock.release();
}
}
private void closePreviewSession() {
if (mPreviewSession != null) {
mPreviewSession.close();
mPreviewSession = null;
}
}
知道如何使“closeCamera”显示黑屏吗?