我有一个问题要问那些有使用Lottie json文件的经验的人。我使用彩票的经验不是很丰富,所以我认为也许我缺少一些明显的知识。当我将动画渲染到视图中时,动画对象会像这样放置在视图的中心
_____________________________________________
| |
| [animated object] |
|_____________________________________________|
有没有一种方法可以修改json文件,使动画对象像这样适合整个视图:
_____________________________________________
| |
| [a n i m a t e d o b j e c t s ]|
|_____________________________________________|
我试图像这样在xml中设置视图:
android:scaleType="centerCrop"
android:adjustViewBounds="true"
但是没用
我还尝试设置更大的比例:
app:lottie_scale="2"
但是我没有成功。 谢谢您的时间!
答案 0 :(得分:3)
就像对待其他视图一样对待它,并以编程方式使用setPadding。
LottieAnimationView btnHeart;
btnHeart.setPadding(-150, -150, -150, -150);
答案 1 :(得分:2)
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animationView"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:scaleType="fitXY"
app:lottie_autoPlay="true"
android:padding="10dp"
app:lottie_loop="true"
app:lottie_rawRes="@raw/your_json_file_here"/></RelativeLayout>
** 试试这个代码。它正在工作 **
答案 2 :(得分:1)
使用“ LottieDrawable”和“ LottieComposition”可以轻松设置比例。波纹管代码为我工作了100%。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:lottie_loop="true"
app:lottie_autoPlay="true"/>
</LinearLayout>
和Java部分
LottieAnimationView animationView = findViewById(R.id.animation_view);
LottieDrawable drawable = new LottieDrawable();
LottieComposition.Factory.fromAssetFileName(this, "anim_1.json",(composition -> {
drawable.setComposition(composition);
drawable.playAnimation();
drawable.setScale(3);
animationView.setImageDrawable(drawable);
}));