summaryrefslogtreecommitdiff
path: root/lottie_loading_layout/res/layout-sw600dp-land-v31/sud_glif_fullscreen_loading_template_content.xml
blob: e5e1bb50af5151666371373593c94be90224eefd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Copyright (C) 2021 The Android Open Source Project

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ViewStub
        android:id="@+id/sud_loading_layout_lottie_stub"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:inflatedId="@+id/sud_layout_lottie_illustration"
        android:layout="@layout/sud_loading_fullscreen_lottie_layout" />

    <LinearLayout
        android:id="@+id/sud_layout_template_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:orientation="horizontal">

            <LinearLayout
                android:id="@+id/sud_landscape_header_area"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="@dimen/sud_glif_land_header_area_weight"
                android:orientation="vertical">

                <ViewStub
                    android:id="@+id/sud_layout_sticky_header"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content" />

                <com.google.android.setupdesign.view.BottomScrollView
                    android:id="@+id/sud_header_scroll_view"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:fillViewport="true"
                    android:scrollIndicators="?attr/sudScrollIndicators">

                    <include layout="@layout/sud_glif_header" />

                </com.google.android.setupdesign.view.BottomScrollView>

            </LinearLayout>

            <LinearLayout
                android:id="@+id/sud_landscape_content_area"
                style="@style/SudLandContentContianerStyle"
                android:paddingTop="?attr/sudGlifContentPaddingTop"
                android:focusedByDefault="false"
                android:orientation="vertical">

                <FrameLayout
                    android:id="@+id/sud_layout_loading_content"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                    <ViewStub
                        android:id="@+id/sud_loading_layout_illustration_stub"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:inflatedId="@+id/sud_layout_progress_illustration"
                        android:layout="@layout/sud_loading_illustration_layout" />

                    <FrameLayout
                        android:id="@+id/sud_layout_content"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:visibility="gone" />

                </FrameLayout>

            </LinearLayout>

        </LinearLayout>

        <ViewStub
            android:id="@+id/suc_layout_footer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </LinearLayout>

</FrameLayout>