blob: 582ad48c189eb922106ac8df4acf2366da6d1f2a [file] [log] [blame]
Jason Monkbd6dbb02015-09-03 15:46:25 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 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<com.android.systemui.qs.customize.QSCustomizer
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="match_parent"
21 android:orientation="vertical"
Jason Monkb9c00192015-10-07 11:45:33 -040022 android:background="@drawable/qs_customizer_background"
23 android:gravity="center_horizontal">
Jason Monkbd6dbb02015-09-03 15:46:25 -040024
Jason Monkb53b6c52016-02-24 17:25:49 -050025 <Toolbar
26 android:id="@*android:id/action_bar"
Jason Monkbd6dbb02015-09-03 15:46:25 -040027 android:layout_width="match_parent"
28 android:layout_height="wrap_content"
Jason Monkb53b6c52016-02-24 17:25:49 -050029 android:layout_marginTop="28dp"
30 android:navigationContentDescription="@*android:string/action_bar_up_description"
31 style="?android:attr/toolbarStyle" />
Jason Monk62b63a02016-02-02 15:15:31 -050032
33 <android.support.v7.widget.RecyclerView
34 android:id="@android:id/list"
Jason Monkb9c00192015-10-07 11:45:33 -040035 android:layout_width="@dimen/notification_panel_width"
Jason Monk2681dcb2015-09-09 13:50:34 -040036 android:layout_height="0dp"
Jason Monkcb9fdca2016-02-25 15:55:53 -050037 android:layout_weight="1"
38 android:scrollIndicators="top"
39 android:scrollbars="vertical" />
Jason Monk2681dcb2015-09-09 13:50:34 -040040
Jason Monk94a1bf62015-10-20 08:43:36 -070041 <View
42 android:layout_width="match_parent"
43 android:layout_height="@dimen/navigation_bar_size"
44 android:layout_gravity="bottom"
45 android:background="#ff000000" />
46
Jason Monkbd6dbb02015-09-03 15:46:25 -040047</com.android.systemui.qs.customize.QSCustomizer>