taskbar_all_apps.xml 2.6 KB

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