如何在Xamarin.Forms中的FFImageLoading的CachedImage中设置LoadingPlaceholder的高度和宽度?

时间:2018-03-26 08:49:54

标签: xamarin.forms xamarin.ios ffimageloading

我想在Xamarin.Forms中的FFImageLoading的CachedImage中设置LoadingPlaceholder的高度和宽度。

我尝试了以下方式,但GIF图像使用全尺寸并显示大。我希望它的当前大小为64px。

代码: xaml文件

Namespace: xmlns:ff="clr-namespace:FFImageLoading.Forms;assembly=FFImageLoading.Forms"

<ff:CachedImage Source="image.png" Aspect="AspectFill" 
        LoadingPlaceholder="Spinner64px.gif" 
        WidthRequest="375"
        HeightRequest="375">
</ff:CachedImage>

尝试使用SVG但没有任何效果

<ff:CachedImage Source="image.png" Aspect="AspectFill" 
        LoadingPlaceholder="Spinner64pxSVG.svg" 
        WidthRequest="375"
        HeightRequest="375">
</ff:CachedImage>

您能否建议我如何显示gif图像的原始大小或设置它的高度和宽度?

enter image description here

0 个答案:

没有答案