我想要Camera Preview
左右颠倒。 (镜像模式)
之前,我尝试使用TextureView
private Camera mCamera;
private TextureView mTextureView;
@Override
public void onSurfaceTextureAvailable(SurfaceTexture surfaceTexture, int width, int height) {
Matrix matrix = new Matrix();
matrix.setScale(-1, 1);
matrix.postTranslate(width, 0);
mTextureView.setTransform(matrix);
此源相机预览镜像模式确定。
但我不想仅使用TextureView
framelayout。
Camera.Parameters()?
如果不可能。如何在framelayout上翻转相机?