CropImageActivity stuck on loading after choosing image from image picker.
See original GitHub issueI am using CropImage.activity() .setGuidelines(CropImageView.Guidelines.ON) .start(this);
but it gets stuck in the crop activity after I choose the image. Is that a bug or something?
Issue Analytics
- State:
- Created 6 years ago
- Comments:14 (3 by maintainers)
Top Results From Across the Web
image_picker crashes when picking - Apple Developer
image_picker crashes when picking images on simulator running on Apple ... M1 it is not possible to select the UIImagePicker controller to select...
Read more >Can't load an image from gallery with image_picker fails in ...
I have checked the path, the photo indeed exists in this path. I have updated the pubspec.yaml for using other images in my...
Read more >How to Use UIImagePickerController for a Camera and Photo ...
Getting a Photo from the Library. The UIImagePickerController is a view controller that gets presented modally. When we select or cancel the ...
Read more >How to Crop Image From Camera and Gallery in Android?
In the previous article, we discussed how to select an Image from Gallery in Android, but in this project, there is no crop...
Read more >iOS Apprentice, Chapter 35: Image Picker | Kodeco, the new ...
UIKit comes with a built-in view controller, UIImagePickerController that lets users take new photos or select existing ones. In this chapter explore this ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
To fix this issue, edit CropImageView.java at line 958.
Where you see:
mBitmapLoadingWorkerTask.get().execute();
Replace with:mBitmapLoadingWorkerTask.get().executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
Basically you need to replace every .execute() on the library with .executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);
added executor fix in 2.5.1