我正在尝试使用Lottie来显示动画,但是在为Android调试时遇到了问题:
LottieAnimationView未显示,因为它太大而无法容纳软件层(或图形缓存),需要9072000字节,只有8294400可用
我的XAML代码:
<ContentPage.Content>
<StackLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<forms:AnimationView
x:Name="AnimationView"
Animation="data.json"
AutoPlay="True" Loop="true"
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
Scale="0.2"/>
</StackLayout>
有人可以帮助我解决此问题吗?