Hi there,
We're loading several images from the web with the following code:
var currentImage = this.ViewModel.SelectedObject.Images [0];
var imageSource = await this.ViewModel.GetImage (currentImage.Url);
Device.BeginInvokeOnMainThread (() =>
this.imageContent.Source = imageSource);
On iOS every image loads correctly, no problems.
On Android all images except one load correctly. The ImageSource is actually filled with the correct Url, but still it shows a blank screen on Android.
Any ideas what this might be?
Image info:
- FIleName: IMG_0134[1]%20small.jpg;
- Width: 1333
- Height: 1000
- FileSize: 200KB
Thanks in advance!