1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (C) 2021 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16--> 17 18<LinearLayout 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 android:id="@+id/sud_layout_template_content" 21 android:layout_width="match_parent" 22 android:layout_height="match_parent" 23 android:orientation="vertical"> 24 25 <LinearLayout 26 android:layout_width="match_parent" 27 android:layout_height="0dp" 28 android:layout_weight="1" 29 android:orientation="horizontal"> 30 31 <LinearLayout 32 android:id="@+id/sud_landscape_header_area" 33 android:layout_width="0dp" 34 android:layout_height="match_parent" 35 android:layout_weight="@dimen/sud_glif_land_header_area_weight" 36 android:orientation="vertical"> 37 38 <ViewStub 39 android:id="@+id/sud_layout_sticky_header" 40 android:layout_width="match_parent" 41 android:layout_height="wrap_content" /> 42 43 <com.google.android.setupdesign.view.BottomScrollView 44 android:id="@+id/sud_header_scroll_view" 45 android:layout_width="match_parent" 46 android:layout_height="match_parent" 47 android:fillViewport="true" 48 android:scrollIndicators="?attr/sudScrollIndicators"> 49 50 <include layout="@layout/sud_glif_header" /> 51 52 </com.google.android.setupdesign.view.BottomScrollView> 53 54 </LinearLayout> 55 56 <LinearLayout 57 android:id="@+id/sud_landscape_content_area" 58 android:layout_width="0dp" 59 android:layout_height="match_parent" 60 android:layout_weight="@dimen/sud_glif_land_content_area_weight" 61 android:orientation="vertical"> 62 63 <com.google.android.setupdesign.view.BottomScrollView 64 android:id="@+id/sud_scroll_view" 65 android:layout_width="match_parent" 66 android:layout_height="match_parent" 67 android:fillViewport="true" 68 android:scrollIndicators="?attr/sudScrollIndicators"> 69 70 <LinearLayout 71 android:layout_width="match_parent" 72 android:layout_height="wrap_content" 73 android:orientation="vertical"> 74 75 <FrameLayout 76 android:id="@+id/sud_layout_content" 77 android:layout_width="match_parent" 78 android:layout_height="0dp" 79 android:layout_weight="1" /> 80 81 <ViewStub 82 android:id="@+id/sud_layout_illustration_progress_stub" 83 android:layout_width="wrap_content" 84 android:layout_height="wrap_content" 85 android:inflatedId="@+id/sud_layout_progress_illustration" 86 android:layout="@layout/sud_progress_illustration_layout" /> 87 </LinearLayout> 88 89 </com.google.android.setupdesign.view.BottomScrollView> 90 91 </LinearLayout> 92 93 </LinearLayout> 94 95 <ViewStub 96 android:id="@+id/suc_layout_footer" 97 android:layout_width="match_parent" 98 android:layout_height="wrap_content" /> 99 100</LinearLayout> 101