Android Application: Socketexception Permission Denied (no Such File Or Directory)
I am trying to use the code written and uploaded by Fedor posted in this thread Lazy load of images in ListView (Source code: http://open-pim.com/tmp/LazyList.zip) Fedor's project
Solution 1:
I don't know if it solves your issue, but in your manifest, uses-permission directives should not be placed inside the uses-sdk directive.
Solution 2:
Do you really have a file called "/mnt/sdcard/ListViewTest/-421624214" ???
Because that looks to me like someone sprintf'd a file name with %d instead of %s and it converted a pointer's value into a decimal int instead of de-referencing it to a string. (Or some comparable programmer type confusion in Java)
Also this is an error at accessing a local file, irrespective of what does or doesn't exist on the web.
Post a Comment for "Android Application: Socketexception Permission Denied (no Such File Or Directory)"