Xamarin - 在Glide Xamarin

时间:2017-03-09 13:34:02

标签: android xamarin.android android-glide

我正在使用自定义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) 

1 个答案:

答案 0 :(得分:1)

使用

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

代替