handle picture taking on a background thread

This commit is contained in:
tibbi 2018-01-12 23:47:50 +01:00
parent 103fc0cbb1
commit 2023cdca50
1 changed files with 10 additions and 8 deletions

View File

@ -296,6 +296,7 @@ class Preview : ViewGroup, SurfaceHolder.Callback, MediaScannerConnection.OnScan
isWaitingForTakePictureCallback = true
mIsPreviewShown = true
try {
Thread {
mCamera!!.takePicture(null, null, takePictureCallback)
if (config.isSoundEnabled) {
@ -306,6 +307,7 @@ class Preview : ViewGroup, SurfaceHolder.Callback, MediaScannerConnection.OnScan
mp?.start()
}
}
}.start()
} catch (ignored: Exception) {
}
}