blob: 7cce1ba36bd937fcf31fc9b8c875c270ec8e89bc [file] [log] [blame]
Jason Monka8321e62016-03-11 08:56:25 -05001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2016 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
Amin Shaikh9a6fa082018-03-29 17:27:26 -040018<merge xmlns:android="http://schemas.android.com/apk/res/android">->
19 <View
Fabian Kozynski5d5deeb2018-09-18 14:49:37 -040020 android:id="@+id/customizer_transparent_view"
Jason Monka8321e62016-03-11 08:56:25 -050021 android:layout_width="match_parent"
Amin Shaikh9a6fa082018-03-29 17:27:26 -040022 android:layout_height="@*android:dimen/quick_qs_offset_height"
23 android:background="@android:color/transparent" />
Jason Monka8321e62016-03-11 08:56:25 -050024
Amin Shaikh9a6fa082018-03-29 17:27:26 -040025 <com.android.keyguard.AlphaOptimizedLinearLayout
26 android:id="@+id/customize_container"
Akira Oshimif1575112016-12-16 18:57:28 +090027 android:layout_width="match_parent"
Jason Monka8321e62016-03-11 08:56:25 -050028 android:layout_height="0dp"
29 android:layout_weight="1"
Amin Shaikh9a6fa082018-03-29 17:27:26 -040030 android:layout_marginLeft="@dimen/notification_side_paddings"
31 android:layout_marginRight="@dimen/notification_side_paddings"
32 android:orientation="vertical"
33 android:background="@drawable/qs_customizer_background">
34 <Toolbar
35 android:id="@*android:id/action_bar"
36 android:layout_width="match_parent"
37 android:layout_height="wrap_content"
38 android:background="@drawable/qs_customizer_toolbar"
39 android:navigationContentDescription="@*android:string/action_bar_up_description"
Fabian Kozynskif80234c2019-02-12 13:54:16 -050040 style="@style/QSCustomizeToolbar"
41 />
Amin Shaikh9a6fa082018-03-29 17:27:26 -040042
Aurimas Liutikasfd52c142018-04-17 09:50:46 -070043 <androidx.recyclerview.widget.RecyclerView
Amin Shaikh9a6fa082018-03-29 17:27:26 -040044 android:id="@android:id/list"
45 android:layout_width="match_parent"
46 android:layout_height="0dp"
47 android:layout_weight="1"
Amin Shaikh9a6fa082018-03-29 17:27:26 -040048 android:paddingLeft="@dimen/qs_tile_layout_margin_side"
49 android:paddingRight="@dimen/qs_tile_layout_margin_side"
50 android:paddingBottom="28dp"
51 android:clipToPadding="false"
52 android:scrollIndicators="top"
53 android:scrollbars="vertical"
54 android:scrollbarStyle="outsideOverlay"
Fabian Kozynski6f5e82d2019-12-02 09:52:00 -050055 android:importantForAccessibility="auto" />
Amin Shaikh9a6fa082018-03-29 17:27:26 -040056 </com.android.keyguard.AlphaOptimizedLinearLayout>
Jason Monka8321e62016-03-11 08:56:25 -050057
58 <View
Jason Monk931f5462016-05-25 11:19:04 -040059 android:id="@+id/nav_bar_background"
Jason Monka8321e62016-03-11 08:56:25 -050060 android:layout_width="match_parent"
61 android:layout_height="@dimen/navigation_bar_size"
62 android:layout_gravity="bottom"
63 android:background="#ff000000" />
64</merge>