New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setImageUri takes too long #3
Comments
This seems like a problem worth solving. @ArthurHub, what do you think the right answer should be here? Disabling the crop support and drawing some sort of loading indicator on the crop image view while downloading the Bitmap? |
Yep, that sounds reasonable, maybe provide the client with optional widget to be placed while it is loading. |
Hmm... how about an async overload of setImageUri with just a basic success/failure callback? That should let the client toggle whatever UI state they want. |
@sethgho That's exactly what I did. |
|
1 similar comment
|
added |
When I get a photo from G+ Photos app, sometimes this need to be downloaded. In this case the app will hang for some time and I get an ANR.
With older devices, decodeBitmat takes too long too.
I think that setImageUri needs to be executed on a background thread. The method setImageUri can accept a callback and return after the job has done.
The text was updated successfully, but these errors were encountered: