web-dev-qa-db-ja.com

Xamarin形式でgif画像を表示する方法

Gif画像をスクリーンアプリに表示したいのですが。ライブラリFFImageLoadingを使用してgif画像を読み込んでいますが、xamarin.forms 3.1で表示できません。他のライブラリがロードgif画像をサポートしているかどうかわかりませんか?私を助けてください!ありがとう!

4
Huu Bao Nguyen

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>

さらに情報が必要な場合はお知らせください。

10
Nirmal Subedi