1<?xml version="1.0" encoding="utf-8"?>
2<!--
3** Copyright 2012, 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
18<!-- Extends RelativeLayout -->
19<com.android.systemui.qs.QuickStatusBarHeader
20    xmlns:android="http://schemas.android.com/apk/res/android"
21    android:id="@+id/header"
22    android:layout_width="match_parent"
23    android:layout_height="wrap_content"
24    android:layout_gravity="@integer/notification_panel_layout_gravity"
25    android:background="@android:color/transparent"
26    android:importantForAccessibility="no"
27    android:baselineAligned="false"
28    android:clickable="false"
29    android:clipChildren="false"
30    android:clipToPadding="false"
31    android:paddingTop="0dp"
32    android:paddingEnd="0dp"
33    android:paddingStart="0dp"
34    android:elevation="4dp" >
35
36    <com.android.systemui.qs.QuickQSPanel
37        android:id="@+id/quick_qs_panel"
38        android:layout_width="match_parent"
39        android:layout_height="wrap_content"
40        android:layout_marginTop="@dimen/qqs_layout_margin_top"
41        android:clipChildren="false"
42        android:clipToPadding="false"
43        android:focusable="true"
44        android:paddingBottom="@dimen/qqs_layout_padding_bottom"
45        android:importantForAccessibility="no">
46    </com.android.systemui.qs.QuickQSPanel>
47
48</com.android.systemui.qs.QuickStatusBarHeader>
49