• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<androidx.coordinatorlayout.widget.CoordinatorLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    xmlns:app="http://schemas.android.com/apk/res-auto"
5    android:id="@+id/coordinatorLayout"
6    android:layout_width="match_parent"
7    android:layout_height="match_parent"
8    android:background="@android:color/white">
9    <LinearLayout
10        android:id="@+id/container"
11        android:layout_width="match_parent"
12        android:layout_height="match_parent"
13        android:orientation="vertical">
14        <FrameLayout
15            android:id="@+id/animationContainer"
16            android:layout_width="match_parent"
17            android:layout_height="0dp"
18            android:layout_weight="1">
19
20            <com.airbnb.lottie.LottieAnimationView
21                android:id="@+id/animationView"
22                android:layout_width="wrap_content"
23                android:layout_height="wrap_content"
24                android:layout_gravity="center"
25                android:background="@drawable/outline"
26                app:lottie_autoPlay="true"/>
27
28            <ProgressBar
29                android:id="@+id/loadingView"
30                android:layout_width="wrap_content"
31                android:layout_height="wrap_content"
32                android:layout_gravity="center"/>
33
34            <View
35                android:layout_width="match_parent"
36                android:layout_height="@dimen/divider_height"
37                android:layout_gravity="bottom"
38                android:background="@color/divider"/>
39        </FrameLayout>
40
41        <include layout="@layout/control_bar_speed" />
42        <include layout="@layout/control_bar_scale" />
43        <include layout="@layout/control_bar_background_color" />
44        <include layout="@layout/control_bar_trim" />
45        <include layout="@layout/control_bar_player_controls" />
46        <include layout="@layout/control_bar" />
47    </LinearLayout>
48
49    <androidx.appcompat.widget.Toolbar
50        android:id="@+id/toolbar"
51        android:layout_width="match_parent"
52        android:layout_height="?attr/actionBarSize"
53        android:layout_gravity="top"
54        app:navigationIcon="@drawable/ic_nav_close_selector"
55        app:title=""/>
56
57    <include layout="@layout/bottom_sheet_render_times" />
58    <include layout="@layout/bottom_sheet_warnings" />
59    <include layout="@layout/bottom_sheet_key_paths" />
60</androidx.coordinatorlayout.widget.CoordinatorLayout>