1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2023 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16<LinearLayout
17    xmlns:android="http://schemas.android.com/apk/res/android"
18    xmlns:app="http://schemas.android.com/apk/res-auto"
19        android:orientation="vertical"
20        android:layout_width="match_parent"
21        android:layout_height="wrap_content"
22        android:paddingStart="?android:attr/listPreferredItemPaddingStart"
23        android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
24        android:paddingBottom="16dp"
25        android:paddingTop="8dp">
26
27    <TextView
28        android:id="@+id/apps_top_intro_text"
29        android:layout_width="match_parent"
30        android:layout_height="wrap_content"
31        android:textDirection="locale"
32        android:clickable="false"
33        android:longClickable="false"
34        android:textAppearance="@style/TextAppearance.TopIntroText"/>
35
36    <com.airbnb.lottie.LottieAnimationView
37        android:id="@+id/illustration_lottie"
38        android:layout_width="match_parent"
39        android:layout_height="wrap_content"
40        android:scaleType="centerInside"
41        android:visibility="visible"
42        android:layout_marginStart="8dp"
43        android:layout_marginTop="8dp"
44        android:layout_marginEnd="8dp"
45        app:lottie_autoPlay="true"
46        app:lottie_loop="true"
47        app:lottie_speed="1.5"/>
48
49    <TextView
50        android:id="@+id/app_list_text"
51        android:layout_width="wrap_content"
52        android:layout_height="wrap_content"
53        android:layout_marginStart="8dp"
54        android:layout_marginTop="8dp"
55        android:layout_marginEnd="8dp"
56        android:textDirection="locale"
57        android:clickable="false"
58        android:longClickable="false"
59        android:textAppearance="@style/TextAppearance.TopIntroText"/>
60
61</LinearLayout>