4

ユーザーがこのアプリケーションでフォーカスモードを選択できるようにしたいカスタムカメラアプリケーションを作成しようとしています。

フォーカス モードは、デフォルトではオート フォーカスです。

cameraView をクリックできるように設定して、画面上の 1 点に触れたときにカメラの焦点がその点に来るようにするにはどうすればよいですか? どのように始めることができますか?以下は私のコードです

public void takePhoto(File photoFile, String workerName, int width, int height,   int        quality) {
if (getAutoFocusStatus()){
    camera.autoFocus(new AutoFocusCallback() {
        @Override
        public void onAutoFocus(boolean success, Camera camera) {
            camera.takePicture(shutterCallback, rawCallback, jpegCallback);
        }
    }); 
}else{
    camera.takePicture(shutterCallback, rawCallback, jpegCallback);
}

this.photoFile = photoFile;
this.workerName = workerName;
this.imageOutputWidth = width;
this.imageOutputHeight = height;
}

public void takePhoto(File photoFile, int width, int height, int quality) {
takePhoto(photoFile, null, width, height, quality);
}
4

1 に答える 1