使用 Akavache 在列表视图适配器中显示图像

本文关键字:显示 显示图 图像 适配器 视图 Akavache 列表 使用 | 更新日期: 2023-09-27 18:34:02

我正在使用Xamarin开发一个跨平台应用程序。我找到了Akavache 但我无法在列表视图适配器中使用Akavache处理图像加载。它的工作非常缓慢。所以我需要修复它或找到另一种方法来解决这个问题。我也找不到一个好的例子或样本。

我正在尝试在getView方法中的Listview适配器中下载和加载图像,如下所示:

    public override View GetView(int position, View convertView, ViewGroup parent)
    {
        var view = convertView;
        ViewHolder holder = null;
        if (view != null) // otherwise create a new one
            holder = view.Tag as ViewHolder;
        if (holder == null)
        {
            holder = new ViewHolder();
            view = _activity.LayoutInflater.Inflate(Resource.Layout.Book_Item, null);
            holder.TextItem1 = view.FindViewById<TextView>(Resource.Id.TextItem1);
            holder.TextItem2 = view.FindViewById<TextView>(Resource.Id.TextItem2);
            holder.ImageView = view.FindViewById<ImageView>(Resource.Id.BookImage);
            getImage(position, holder.ImageView, image => holder.ImageView.SetImageDrawable(image.ToNative())); 
        }
        holder.TextItem1.Text = _list[position].volumeInfo.title;
        holder.TextItem2.Text = _list[position].volumeInfo.publishedDate;
        return view;
    }

    public async void getImage(int position, ImageView imageView, Action <IBitmap> setImage)
    {
        var image = await _cache.GetAnImage(_list[position].volumeInfo.imageLinks.smallThumbnail);
        setImage(image);
    }

在我的 DataCache 类中,我尝试通过以下方式获取图像,加载图像从 URL 在滚动时没有按预期工作,重新加载图像需要很长时间。GetAndFetchLatest 和 GetOrFetchObject 方法给出了 InvalidCastException。异常消息位于末尾。您有任何类似的例子或任何建议来解决我的问题吗?

    public async Task<IBitmap> GetAnImage(string imageUrl)
    {
        // return await BlobCache.InMemory.GetAndFetchLatest( imageUrl, async() => await DownloadImage(imageUrl), offset => true);
        // return await BlobCache.InMemory.GetOrFetchObject(imageUrl, async () => await DownloadImage(imageUrl));
        return await DownloadImage(imageUrl);
    }
    public async Task<IBitmap> DownloadImage(string imageUrl)
    {
        return await BlobCache.InMemory.LoadImageFromUrl(imageUrl, true, 100, 100);
    }

未处理的异常: 12-11 12:48:54.560 I/MonoDroid( 2017(: System.InvalidCastException: 无法从源类型转换为目标类型。 12-11 12:48:54.560 I/MonoDroid( 2017(: at (包装器castclass( 对象:__castclass_with_cache (对象,intptr,intptr( 12-11 12:48:54.564 I/MonoDroid( 2017(: at Akavache.JsonSerializationMixin+c__AnonStorey1 1[System.Byte[]].<>m__0 (System.Exception _) [0x00000] in <filename unknown>:0 12-11 12:48:54.564 I/MonoDroid( 2017): at System.Reactive.Linq.ObservableImpl.Catch 2+_[System.Byte[],System.Exception].错误 (系统异常错误( [0x00000] 在 :0 中 12-11 12:48:54.572 I/MonoDroid( 2017(:--- 从引发异常的先前位置的堆栈跟踪结束--- 12-11 12:48:54.572 I/MonoDroid( 2017(: at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw (( [0x00000] in :0 12-11 12:48:54.580 I/MonoDroid( 2017(: at System.Reactive.PlatformServices.ExceptionServicesImpl.Rethrow (System.Exception exception( [0x00000] in :0 12-11 12:48:54.580 I/MonoDroid( 2017(: at System.Reactive.ExceptionHelpers.ThrowIfNotNull (System.Exception exception( [0x00000] in :0 12-11 12:48:54.580 I/MonoDroid( 2017(: at System.Reactive.Subjects.AsyncSubject'1[Splat.IBitmap].GetResult (( [0x00000] in :0 发生未处理的异常。

更新:Paul回答了我,所以现在我知道我不能将GetOrFetchObject与IBitmaps一起使用,因为它们是UI元素。所以异常消息现在是不必要的。但是 loadImageFromUrl 方法在滚动时阻止了我的 UI 线程。所以这对我来说仍然是一个大问题。

使用 Akavache 在列表视图适配器中显示图像

最后我解决了这个问题。首先,我通过尝试不同的库(MonoDroid.UrlImageViewHelper(发现这不是Akavache的问题。然后我认为问题可能与列表视图本身有关。我是一名高级开发人员,所以我知道列表视图优化,但我仍然在寻找新的优化策略,看看我是否错过了什么。

首先,我建议您查看此站点:http://leftshift.io/6-ways-to-make-your-lists-scroll-faster-than-the-wind

我已经知道其中的许多建议,但真正不同的是更改列表视图的高度以匹配包装内容的父级。您也可以尝试将其设为 0dp。它会产生相同的结果。

然后我找到了这个线程,它讲述了"match_parent"优化背后的故事

为什么 0dp 被视为性能增强?