1<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2022 The Android Open Source Project
2
3     Licensed under the Apache License, Version 2.0 (the "License");
4     you may not use this file except in compliance with the License.
5     You may obtain a copy of the License at
6
7          http://www.apache.org/licenses/LICENSE-2.0
8
9     Unless required by applicable law or agreed to in writing, software
10     distributed under the License is distributed on an "AS IS" BASIS,
11     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12     See the License for the specific language governing permissions and
13     limitations under the License.
14-->
15<!-- This file is used by multiple all_apps.xml. Layout consists of all contents
16     showed in all apps screen
17-->
18<merge xmlns:android="http://schemas.android.com/apk/res/android">
19
20    <include
21        layout="@layout/all_apps_bottom_sheet_background"
22        android:visibility="gone" />
23
24    <include
25        layout="@layout/search_results_rv_layout"
26        android:visibility="gone" />
27
28    <include
29        layout="@layout/all_apps_rv_layout"
30        android:visibility="gone" />
31
32    <com.android.launcher3.allapps.FloatingHeaderView
33        android:id="@+id/all_apps_header"
34        android:layout_width="match_parent"
35        android:layout_height="wrap_content"
36        android:clipToPadding="false"
37        android:layout_below="@id/search_container_all_apps"
38        android:paddingTop="@dimen/all_apps_header_top_padding"
39        android:paddingBottom="@dimen/all_apps_header_bottom_padding"
40        android:orientation="vertical" >
41
42        <include layout="@layout/floating_header_content" />
43
44        <include layout="@layout/all_apps_personal_work_tabs" />
45
46    </com.android.launcher3.allapps.FloatingHeaderView>
47
48    <include layout="@layout/all_apps_fast_scroller" />
49</merge>