save images in the editor on the background thread
This commit is contained in:
parent
b1a53c0e9c
commit
07d921330e
1 changed files with 3 additions and 1 deletions
|
@ -172,7 +172,9 @@ class EditActivity : SimpleActivity(), CropImageView.OnCropImageCompleteListener
|
|||
try {
|
||||
getFileOutputStream(file) {
|
||||
if (it != null) {
|
||||
saveBitmap(file, bitmap, it)
|
||||
Thread {
|
||||
saveBitmap(file, bitmap, it)
|
||||
}.start()
|
||||
} else {
|
||||
toast(R.string.image_editing_failed)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue