[go: nahoru, domu]

blob: 28ce57997345557919d08da5096e951b00c9fbed [file] [log] [blame]
gogerald3c28b2a2019-08-15 21:27:051<?xml version="1.0" encoding="utf-8"?>
Avi Drissmanae7b33a42022-09-13 16:51:072<!--
3Copyright 2019 The Chromium Authors
4Use of this source code is governed by a BSD-style license that can be
5found in the LICENSE file.
6-->
gogerald3c28b2a2019-08-15 21:27:057
Xi Han404531e62022-04-28 19:14:488<org.chromium.chrome.features.tasks.TasksView
gogerald3c28b2a2019-08-15 21:27:059 xmlns:android="http://schemas.android.com/apk/res/android"
10 xmlns:app="http://schemas.android.com/apk/res-auto"
11 xmlns:tools="http://schemas.android.com/tools"
12 android:layout_width="match_parent"
Hao Dong6a448152022-09-27 16:24:2713 android:layout_height="match_parent">
gogeraldf0445b02019-10-04 19:04:1814
Ben Joyce32c94352020-02-24 17:33:3115 <com.google.android.material.appbar.AppBarLayout
Mia Glaese6b362712019-10-21 21:38:2116 android:id="@+id/task_surface_header"
Matt Simmons5ac41b12019-09-16 23:51:5617 android:layout_width="match_parent"
18 android:layout_height="wrap_content"
Mia Glaese6b362712019-10-21 21:38:2119 app:elevation="0dp">
Yue Zhangb18b9372020-06-25 23:38:3820 <LinearLayout
spdonghao893e2432020-10-01 21:47:2321 android:id="@+id/top_toolbar_placeholder"
22 android:layout_width="match_parent"
spdonghaod0ddd602022-02-16 01:10:5823 android:layout_height="wrap_content"
spdonghao893e2432020-10-01 21:47:2324 android:background="@android:color/transparent"
25 android:orientation="vertical"
spdonghao633fc0e2021-02-27 00:45:5126 app:layout_scrollFlags="scroll|snap">
spdonghao893e2432020-10-01 21:47:2327 </LinearLayout>
28 <LinearLayout
spdonghao1900d0972022-09-27 20:04:5929 android:id="@+id/logo_container"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:orientation="vertical"
33 android:visibility="gone"
spdonghaobb6ee629d2022-09-28 22:37:1834 app:layout_scrollFlags="scroll|snap">
spdonghao1900d0972022-09-27 20:04:5935 <include layout="@layout/logo_view_layout" />
36 </LinearLayout>
37 <LinearLayout
spdonghao454214b2021-04-13 14:50:0738 android:id="@+id/fake_search_box"
Yue Zhangb18b9372020-06-25 23:38:3839 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
spdonghao454214b2021-04-13 14:50:0741 android:orientation="vertical"
42 app:layout_scrollFlags="scroll">
Xi Han52e8d6e2022-01-27 18:07:5043 <include layout="@layout/tasks_surface_search_box_layout"/>
Yue Zhangb18b9372020-06-25 23:38:3844 </LinearLayout>
Min Qin1d569632021-12-14 21:09:4445 <FrameLayout android:id="@+id/query_tiles_container"
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"
48 android:paddingTop="6dp"
49 android:paddingStart="6dp"
50 android:paddingEnd="6dp"
51 android:visibility="gone"
52 app:layout_scrollFlags="scroll">
53 <include layout="@layout/query_tiles_layout" />
54 </FrameLayout>
Xinyi Ji46e77ff2023-08-01 15:15:4555 <include layout="@layout/mv_tiles_container" />
Mia Glaese6b362712019-10-21 21:38:2156 <!-- TODO(crbug.com/982018): Make view stub to inflate only when needed. -->
Xinyi Jid821fb402023-03-29 20:04:0857 <include layout="@layout/tab_switcher_module_container" />
Ben Joyce32c94352020-02-24 17:33:3158 </com.google.android.material.appbar.AppBarLayout>
gogerald9ac0ba482020-06-19 19:16:0759
60 <!-- This incognito_description_container_layout_stub and the below tasks_surface_body
61 should be mutually exclusive, otherwise they will overlap each other. -->
62 <ViewStub
63 android:id="@+id/incognito_description_container_layout_stub"
64 android:layout_width="match_parent"
65 android:layout_height="match_parent"
66 android:layout="@layout/incognito_description_container_layout"
67 app:layout_behavior="@string/appbar_scrolling_view_behavior" />
68
69 <!-- Note that this FrameLayout can not be added to NestedScrollView, otherwise the
70 RecyclerView added to this FrameLayout won't recycle. -->
gogerald3c28b2a2019-08-15 21:27:0571 <FrameLayout
Mia Glaese6b362712019-10-21 21:38:2172 android:id="@+id/tasks_surface_body"
gogerald3c28b2a2019-08-15 21:27:0573 android:layout_width="match_parent"
Hao Dong6a448152022-09-27 16:24:2774 android:layout_height="match_parent"
gogerald9ac0ba482020-06-19 19:16:0775 app:layout_behavior="@string/appbar_scrolling_view_behavior" />
Xi Han404531e62022-04-28 19:14:4876</org.chromium.chrome.features.tasks.TasksView>