• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout 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="wrap_content"
6    android:orientation="vertical">
7
8    <TextView
9        android:id="@+id/name"
10        android:layout_width="wrap_content"
11        android:layout_height="wrap_content"
12        android:layout_gravity="center_horizontal"
13        android:singleLine="true"
14        android:maxLines="1"/>
15
16    <com.airbnb.lottie.LottieAnimationView
17        android:id="@+id/animation_view"
18        android:layout_width="match_parent"
19        android:layout_height="200dp"
20        android:background="@drawable/outline"
21        android:orientation="vertical"
22        app:lottie_autoPlay="true"
23        app:lottie_loop="true" />
24</LinearLayout>