我有一个 gif 图像,我想在屏幕应用程序上显示它。我使用库 FFImageLoading 加载 gif 图像,但我无法在 xamarin.forms 3.1 中显示它。不知道其他库是否支持加载gif图片?请帮我!谢谢!
1 回答
萧十郎
TA贡献1815条经验 获得超13个赞
FFImageLoading.Svg.Forms 支持 gif 图像。我使用 FFImageLoading 显示 gif 没有问题。
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MyApp.AnimationView"
xmlns:ffimageloading="clr-namespace:FFImageLoading.Svg.Forms;assembly=FFImageLoading.Svg.Forms">
<ffimageloading:SvgCachedImage HeightRequest="30" HorizontalOptions="FillAndExpand" VerticalOptions="Center" Aspect="AspectFill" x:Name="imageWave" Source="Wave.gif" Margin="0"/>
</ContentView>
如果您需要更多信息,请与我们联系。
- 1 回答
- 0 关注
- 280 浏览
添加回答
举报
0/150
提交
取消