zoukankan      html  css  js  c++  java
  • Unable to parse composition

    Unable to parse composition

    When i tried to load gif to my project suddenly return me error:

    Java.Lang.IllegalStateException: 'Unable to parse composition'
    

    I want to insert gif to my project I tried to use Lottie and Json File

    My code so far

    <forms:AnimationView 
        x:Name="animationView" 
        Grid.Row="1"
        Animation="first.json" 
        Loop="false" 
        AutoPlay="false"/>  

    Please add xmlns:lottie="clr-namespace:Lottie.Forms;assembly=Lottie.Forms" to your XAML head and use this component

     <lottie:AnimationView 
                    x:Name="AnimationView" 
                    Animation="first.json" 
                    AutoPlay="True" Loop="true"
                    VerticalOptions="FillAndExpand"
                    HorizontalOptions="FillAndExpand" />
    

    and dont forget to init AnimationViewRenderer.Init(); on MainActivity and AppDelegate

     
     
    •  
      i did it but same error. where must be first.json in assest folder or ? – Hristo Ivanov Nov 4 at 12:31
    •  
      Now i have new error link – Hristo Ivanov Nov 4 at 12:35
    •  
      @HristoIvanov the json files must be in Assets for android and Resources for iOS – Guilherme Nimer Nov 4 at 12:37 
    •  
      Yes I did it link but same error – Hristo Ivanov Nov 4 at 12:44
    •  
      Ok Thanks Fix it Paste 'AnimationViewRenderer.Init()' at wrong place Thanks again for advice – Hristo Ivanov Nov 4 at 12:46
            com.airbnb.lottie.LottieAnimationView$2.onResult(LottieAnimationView.java:75)
                   at 
            com.airbnb.lottie.LottieAnimationView$2.onResult(LottieAnimationView.java:73)
                   at 
            com.airbnb.lottie.LottieTask.notifyFailureListeners(LottieTask.java:158)
                   at com.airbnb.lottie.LottieTask.access$200(LottieTask.java:27)
                   at com.airbnb.lottie.LottieTask$1.run(LottieTask.java:133)
                   at android.os.Handler.handleCallback(Handler.java:836)
                   at android.os.Handler.dispatchMessage(Handler.java:103)
                   at android.os.Looper.loop(Looper.java:232)
                   at android.app.ActivityThread.main(ActivityThread.java:6802)
                   at java.lang.reflect.Method.invoke(Method.java)
                   at 
           com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1103)
                   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:964)```
    
    ’
    I also encountered the same problem, but I couldn't find the AnimationViewRenderer class in my code to initialize it
    
     
  • 相关阅读:
    appium---webview(H5)元素定位
    appium---切换webview时报错
    appium---如何判断原生页面和H5页面
    JDK与Java SE/EE/ME的区别
    Ubantu18.04安装WPS
    堆与栈的区别
    JAVA-基础(Stream流)
    Java面试(1)
    ubuntu自带截图工具
    Linux 下各个目录的作用及内容
  • 原文地址:https://www.cnblogs.com/endv/p/12013911.html
Copyright © 2011-2022 走看看