• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent">
6
7    <com.airbnb.lottie.LottieAnimationView
8        android:id="@+id/animation_view"
9        android:layout_width="200dp"
10        android:layout_height="200dp"
11        android:layout_gravity="center"
12        android:scaleType="fitCenter"
13        app:lottie_autoPlay="true"
14        app:lottie_colorFilter="@android:color/background_dark"
15        app:lottie_speed="1.0"
16        app:lottie_progress="0.5"
17        app:lottie_renderMode="automatic"
18        app:lottie_repeatCount="3"
19        app:lottie_repeatMode="restart"
20        app:lottie_loop="true" />
21</FrameLayout>