blob: c1bcdfe0a4348f7d84ceca863dd51e686a6e3c5c [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 -->
Winson Chung5f623012012-09-14 14:58:43 -070025 <ScrollView
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"
29 >
30 <com.android.systemui.statusbar.phone.QuickSettingsContainerView
31 android:id="@+id/quick_settings_container"
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
34 android:animateLayoutChanges="true"
35 android:columnCount="@integer/quick_settings_num_columns"
36 />
Winson Chung5f623012012-09-14 14:58:43 -070037 </ScrollView>
Daniel Sandler13522a22012-09-27 14:46:58 -040038
39 <View
40 android:id="@+id/handle"
Daniel Sandler8e72c9e2012-08-15 00:09:26 -040041 android:layout_width="match_parent"
42 android:layout_height="@dimen/close_handle_height"
Daniel Sandler13522a22012-09-27 14:46:58 -040043 />
Daniel Sandlercf591db2012-08-15 16:11:55 -040044</com.android.systemui.statusbar.phone.SettingsPanelView >