-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Bitmap from camera not loaded - Moto G Android 5.0.1 #1069
Comments
+1 |
Also, I noticed the same problem trying to load local Uri's ("content://com.android.providers.media.documents/document/" etc.) of large images ( > 1 MB). Any help would be really appreciated |
Seems like that well-known marker issue. Attach a listener to confirm:
|
I'm having the same issue on a Moto G - Android 5.0.2. Here is a stack trace of the above listener:
|
@squeeish I am not getting any exception thrown from this listener. |
So I figured out that it works simply if I get the absolute url of the file (of the format |
I have the same problem here only on some Samsung devices. File[] picFiles = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).listFiles(); and try to display it with Picasso.with(getActivity()).load(Uri.fromFile(file)).into(imageView); or Picasso.with(getActivity()).load("file://" + file.getAbsolutePath()).into(imageView); |
+1 |
+1
|
I am facing the same problem only on my moto X (2nd gen) running lollipop 5.1. All other device work fine. Here is a trace that art dumped that may be relevant. native: #1 pc 000aa0c3 /system/lib/libart.so (art::ConditionVariable::Wait(art::Thread_)+98) |
Same issue on the Moto G 3rd generation with 5.1.1 |
Also getting the error on MotoG 2nd Generation. The debugger shows an exception in
I am using Picasso Version 2.5.2 |
Also seeing image loading getting into It works just fine on other devices tested. Also note that on the Moto G and the Lenovo A7000, loading images from the gallery that were not taken with the camera works just fine. I tried attaching a Listener, and it doesn't get into For images chosen from the gallery, here is the format of the Uri returned from calling content://com.android.providers.media.documents/document/image%3A174 For images taken with the camera, here is the format of the Uri (constructed using file:///storage/sdcard0/Pictures/JPEG_20151008_173640_67168147.jpg Using version 2.5.2 |
Can confirm I am also facing the same issue on my Moto X - 5.0.1 |
Hi, |
+1. Same issue. |
+1 |
+1, I'm facing the same issue since 2.5.0 on Nexus 5 6.0.1 Update : I also switched into Glide which works pretty well |
+1 Moto G with Android 5.0.2 Update: |
+1 Moto G3 with android 6.0 |
+1 on Nexus 5, Android 6.0.1 |
+1 Moto XT1068 (G2), Android 5.0.2 |
1 similar comment
+1 Moto XT1068 (G2), Android 5.0.2 |
@JakeWharton I think this has been fixed in the master branch via b61c5d4, correct? |
Yep. Thanks. |
I mean +1 |
Oh, you ;) |
@aried3r did you release the build |
I'm not part of the Square team or one of the maintainers. Either wait for On Sat, Mar 5, 2016, 14:12 sudeeps-r [email protected] wrote:
|
Is this issue is fixed or not? |
It is. On Thu, Mar 10, 2016, 04:21 SagarPanwala [email protected] wrote:
|
moto x style +1 |
Getting this message on 2.5.2, Nexus 5X (7.1.1)
Added said permission in the manifest, still issue persists Path is taken from I supplied the image as follows:
UPDATE Added a string Uri path from QuickPic (or other app for that matter), it does work.
|
Moto G 4 Plus ... +1. Using Picasso 2.5.2 😢 |
Going back to Picasso 2.4.0 fixes the issue. WOAW |
I am facing the same issue using Picasso 2.5.2. Is there any workaround for this issue? |
Try 3.0.0-SNAPSHOT?
…On Wed, Apr 19, 2017, 1:00 PM amruta-gosavi ***@***.***> wrote:
I am facing the same issue using Picasso 2.5.2. Is there any workaround
for this issue?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#1069 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEEEZlvzFFgefHnYL2m5J8IvHJvLD0Bks5rxku1gaJpZM4FHNFZ>
.
|
As discussed in issue #539 I am encountering this problem again, since that issue is now closed I am opening a new one to report this bug:
Picasso 2.5.2 fails to load images from the local Uri of an image captured via a Camera Intent (the manifest has all the required permission to work with STORAGE and DOCUMENTS).
It doesn't throw any exception, the only trace I get of this error is when I attach a
Target
to theImageView
and it triggers theonBitmapFailed()
method.I am using a Moto G on Android 5.0.1.
NB: it may be useful to know that I don't get this error using Genymotion's emulator camera.
Thanks
The text was updated successfully, but these errors were encountered: