美文网首页
Android动画之Lottie 动画

Android动画之Lottie 动画

作者: smile夕颜 | 来源:发表于2019-06-21 15:37 被阅读0次

    Lottiej简介

    Lottie是一款动画库,支持Android Ios H5 RN等语言,实现方式是通过AE做成的动画导出JSON文件,然后前端使用Lottie直接加载JSON文件生成动画。

    Android 使用

    1.把AE 制作好的AE文件放到assets文件夹中


    json文件

    2 引入Lottie框架

        implementation 'com.airbnb.android:lottie:1.5.1'
    

    3 布局引用

        <com.airbnb.lottie.LottieAnimationView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:lottie_autoPlay="true"
            app:lottie_fileName="newAnimation.json"
            app:lottie_loop="true" />
    

    效果

    效果图片

    相关文章

      网友评论

          本文标题:Android动画之Lottie 动画

          本文链接:https://www.haomeiwen.com/subject/vyiyqctx.html