blob: 75082bafb017c3fae047fff15d8b1a32054d15ce [file] [log] [blame]
Daniel Sandler8e72c9e2012-08-15 00:09:26 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2012 The Android Open Source Project
3
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
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
Daniel Sandlercf591db2012-08-15 16:11:55 -040017<com.android.systemui.statusbar.phone.SettingsPanelView
Daniel Sandler8e72c9e2012-08-15 00:09:26 -040018 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:id="@+id/settings_panel"
Winson Chungd63c59782012-09-05 17:34:41 -070022 android:background="@drawable/notification_panel_bg"
Daniel Sandler8e72c9e2012-08-15 00:09:26 -040023 >
Winson Chungd63c59782012-09-05 17:34:41 -070024 <!-- TODO: Put into ScrollView -->
Daniel Sandlere5f7ec02012-10-03 10:40:00 -040025 <com.android.systemui.statusbar.phone.QuickSettingsScrollView
Daniel Sandler8e72c9e2012-08-15 00:09:26 -040026 android:layout_width="match_parent"
Daniel Sandler13522a22012-09-27 14:46:58 -040027 android:layout_height="wrap_content"
28 android:layout_marginBottom="@dimen/close_handle_underlap"
Daniel Sandlere5f7ec02012-10-03 10:40:00 -040029 android:overScrollMode="ifContentScrolls"
Daniel Sandler13522a22012-09-27 14:46:58 -040030 >
31 <com.android.systemui.statusbar.phone.QuickSettingsContainerView
32 android:id="@+id/quick_settings_container"
33 android:layout_width="match_parent"
34 android:layout_height="wrap_content"
35 android:animateLayoutChanges="true"
36 android:columnCount="@integer/quick_settings_num_columns"
37 />
Daniel Sandlere5f7ec02012-10-03 10:40:00 -040038 </com.android.systemui.statusbar.phone.QuickSettingsScrollView>
Daniel Sandler13522a22012-09-27 14:46:58 -040039
40 <View
41 android:id="@+id/handle"
Daniel Sandler8e72c9e2012-08-15 00:09:26 -040042 android:layout_width="match_parent"
43 android:layout_height="@dimen/close_handle_height"
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040044 android:background="@drawable/status_bar_close"
45 android:visibility="invisible"
Daniel Sandler13522a22012-09-27 14:46:58 -040046 />
Daniel Sandler0c1b75c2012-10-04 12:08:54 -040047
Daniel Sandlercf591db2012-08-15 16:11:55 -040048</com.android.systemui.statusbar.phone.SettingsPanelView >