使用' FFImageLoading.CachedImage'加载图像时出现内存异常。在xamrinform中

时间:2017-09-07 13:19:42

标签: xamarin xamarin.android xamarin.forms

我想在单页中显示图像列表,就像图库一样。在我的xaml页面中,我创建单包视图,在我的包装视图中 添加ffimageloader以加载图片。在这里,我给出了图片网址列表'该包装视图包含ffimageloader。当我打电话给那个页面时,它显示了一个错误的错误。

像这样的{p> system.outofmemoryexception: out of memory at ffimageloading.platformimageloadertask.....。许多帖子建议,如果我们使用ffimageloader而不是图像标签,我们将减少此类问题,但在使用此问题后仍然会遇到相同的问题。我在xamarin android中运行我的应用程序。请提出任何想法。

以下是我试过的示例代码

<CustomWrapView x:Name="SampleGalleryView" ItemsSource="{Binding GalleryImages}">
   <CustomWrapView.ItemTemplate>
       <DataTemplate>
         <ffimageloading:CachedImage Source="{Binding ImageUrl}" />
       </DataTemplate>
   </CustomWrapView.ItemTemplate>
</CustomWrapView>

1 个答案:

答案 0 :(得分:0)