FFImageLoading.Exceptions.DownloadHttpStatusCodeException
See original GitHub issueDescription
So i have android project with RecyclerView displaying images in each item. i use latest nuget package of Xamarin.FFImageLoading.
ImageService.Instance.Config.AllowUpscale = false;
ImageService.Instance.Config.ClearMemoryCacheOnOutOfMemory = true;
ImageService.Instance.Config.FadeAnimationForCachedImages = false;
ImageService.Instance.Config.MaxMemoryCacheSize = 0;
ImageService.Instance.Config.FadeAnimationEnabled = false;
This is how i set config settings. and this is how i load image
ImageService.Instance
.LoadUrl(imageView.Url)
.WithCache(FFImageLoading.Cache.CacheType.Disk)
.CacheKey(imageView.Url)
.IntoAsync(imageView);
(imageView is my custom view which is inherited from ImageView and it has Url property.)
the problem is that while scrolling RecyclerView slowly it works fine, but on fastscroll it crashes and throws Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR) exception. after that it is written that FFImageLoading.Exceptions.DownloadHttpStatusCodeException this exception happened in package. when i remove image initialization it works fine on fast scroll. do you guys have any suggestion?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:12 (1 by maintainers)
Top Results From Across the Web
Xamarin Forms FFImageLoading doesn't load images from ...
cs , etc. I tried every solution I found here. It shouldn't be encoded in GZIP. Also, no error message is displayed and...
Read more >No Logins Icons in IOS/Android - Password Manager
Looking at the Console App with my phone connected, I've seen errors regarding Image loading failures. An example item is as follows. Image ......
Read more >FFImageLoading Image URL Source not working in Xamarin ...
I ran into this issue this week. I would define the Source as a URL and then, nothing... It turns out, with FFImageLoading,...
Read more >Users/florian/Library/Developer/CoreSimulator/Devices ...
Common\Work\ImageLoaderTask.cs:618. ---> (Inner Exception #0) FFImageLoading.Exceptions.DownloadHttpStatusCodeException: BadGateway <!
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
Any updates?
The same issue for me, the crash appears when using Xamarin Forms
ListView
, and also with nativeImageService.Instance.Load..
when using withRecyclerView
. Looks like it cancels a download of already scrolled items, and it causes a crash.