• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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            <FrameLayout
64                android:id="@+id/sud_layout_content"
65                android:layout_width="match_parent"
66                android:layout_height="0dp"
67                android:layout_weight="1" />
68
69        </LinearLayout>
70
71    </LinearLayout>
72
73    <ViewStub
74        android:id="@+id/suc_layout_footer"
75        android:layout_width="match_parent"
76        android:layout_height="wrap_content" />
77
78</LinearLayout>
79