• 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:orientation="vertical"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent">
7
8    <LinearLayout
9        android:layout_width="match_parent"
10        android:layout_height="wrap_content"
11        android:layout_gravity="center_horizontal"
12        android:orientation="horizontal">
13
14        <com.airbnb.lottie.LottieAnimationView
15            android:id="@+id/originalTextView"
16            android:layout_width="wrap_content"
17            android:layout_height="wrap_content"
18            android:layout_marginRight="16dp"
19            app:lottie_rawRes="@raw/name"
20            app:lottie_autoPlay="true"
21            app:lottie_loop="true"/>
22
23        <com.airbnb.lottie.LottieAnimationView
24            android:id="@+id/dynamicTextView"
25            android:layout_width="wrap_content"
26            android:layout_height="wrap_content"
27            app:lottie_rawRes="@raw/name"
28            app:lottie_autoPlay="true"
29            app:lottie_loop="true"/>
30    </LinearLayout>
31
32    <EditText
33        android:id="@+id/nameEditText"
34        android:layout_width="match_parent"
35        android:layout_height="wrap_content"
36        android:layout_marginLeft="16dp"
37        android:layout_marginTop="32dp"
38        android:layout_marginRight="16dp"
39        android:inputType="text"/>
40
41</LinearLayout>