Xamarin - 在Glide Xamarin中使用AsBitmap()

问题描述 投票:2回答:1

我正在使用自定义ImageView类使我的图像可缩放,它与drawable一起工作得很好,但是当我使用Glide Library时我遇到了问题

我想为什么会发生这种情况导致这个自定义类不处理滑动类型所以解决方案将其转换为Bitmap

链接到Solution

ScaleImageView img = new ScaleImageView(Context);
Glide.With(Context).Load(url).AsBitmap().Into(img);

但是当我实现相同的代码时,我面临AsBitmap()的问题,我无法找到错误参考

这是我的错误信息

 Error CS1061: Type `Com.Bumptech.Glide.DrawableTypeRequest' does not contain a definition for `AsBitmap' and no extension method `AsBitmap' of type `Com.Bumptech.Glide.DrawableTypeRequest' could be found. Are you missing an assembly reference? (CS1061) 
android xamarin.android android-glide
1个回答
1
投票

使用

Glide.With(Context).AsBitmap().Load(url).Into(img);

代替

© www.soinside.com 2019 - 2024. All rights reserved.