日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

android lottie字体json,lottie-android

發布時間:2024/9/30 编程问答 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android lottie字体json,lottie-android 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

build.gradlefile:dependencies?{

compile?'com.airbnb.android:lottie:1.0.1'

}

lottie 支持 Jellybean (API 16) 及以上。最簡單的使用方式是和LottieAnimationView一起使用:

android:id="@+id/animation_view"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

app:lottie_fileName="hello-world.json"

app:lottie_loop="true"

app:lottie_autoPlay="true"?/>

你可以在代碼里動態的加載。加載app/src/main/assets中的json:LottieAnimationView?animationView?=?(LottieAnimationView)?findViewById(R.id.animation_view);

animationView.setAnimation("hello-world.json");

animationView.loop(true);

這個方法將加載文件并在后臺解析動畫,解析完成即開始異步渲染。

如果你想復用動畫比如列表的每個item中或者從網絡請求一個JSONObject:LottieAnimationView?animationView?=?(LottieAnimationView)?findViewById(R.id.animation_view);

...

LottieComposition?composition?=?LottieComposition.fromJson(getResources(),?jsonObject,?(composition)?->?{

animationView.setComposition(composition);

animationView.playAnimation();

});

然后你就可以控制動畫并添加listener了:animationView.addAnimatorUpdateListener((animation)?->?{

//?Do?something.

});

animationView.playAnimation();

...

if?(animationView.isAnimating())?{

//?Do?something.

}

...

animationView.setProgress(0.5f);

...

//?Custom?animation?speed?or?duration.

ValueAnimator?animator?=?ValueAnimator.ofFloat(0f,?1f)

.setDuration(500);

animator.addUpdateListener(animation?->?{

animationView.setProgress(animation.getAnimatedValue());

});

animator.start();

...

animationView.cancelAnimation();

在底層LottieAnimationView使用LottieDrawable來渲染動畫,如果你需要,你可以直接使用drawable:LottieDrawable?drawable?=?new?LottieDrawable();

LottieComposition.fromAssetFileName(getContext(),?"hello-world.json",?(composition)?->?{

drawable.setComposition(composition);

});

如果你的動畫被頻繁使用,LottieAnimationView有一個可選的緩存策略:LottieAnimationView#setAnimation(String, CacheStrategy)。CacheStrategy可以是?Strong,?Weak, 或者?None

總結

以上是生活随笔為你收集整理的android lottie字体json,lottie-android的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。