Lottie Animation не работает правильно в макете приложения - PullRequest
0 голосов
/ 08 июля 2019

Анимация Лотти не работает правильно.Пожалуйста, помогите.

XML-файл

 <com.airbnb.lottie.LottieAnimationView
                android:id="@+id/check_in_anim"
                android:layout_width="wrap_content"
                app:lottie_autoPlay="true"
                app:lottie_fileName="tenor.json"
                app:lottie_loop="true"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true" />

активность

  LottieAnimationView lottieAnimationView = findViewById(R.id.check_in_anim);
        lottieAnimationView.playAnimation();

enter image description here

моя Лотти

введите описание ссылки здесь

спасибо за помощь.

1 Ответ

0 голосов
/ 08 июля 2019

Поместите свой lottie json в res / raw и добавьте его в свой xml

app:lottie_rawRes="@raw/your_animation"

Как это

<com.airbnb.lottie.LottieAnimationView
                android:id="@+id/check_in_anim"
                app:lottie_rawRes="@raw/your_animation"
                android:layout_width="wrap_content"
                app:lottie_autoPlay="true"
                app:lottie_fileName="tenor.json"
                app:lottie_loop="true"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true" />

Для получения более подробной информации.официальную документацию вы можете посмотреть здесь

...