volume_adjust.xml revision 2bbdd77ab20788e901a410f299edef028b66bb6e
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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
17<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:layout_width="wrap_content"
19    android:layout_height="wrap_content"
20    android:gravity="left">
21
22    <LinearLayout
23        android:layout_width="wrap_content"
24        android:layout_height="wrap_content"
25        android:layout_marginTop="80dip"
26        android:background="@android:drawable/dialog_full_holo_dark"
27        android:orientation="horizontal"
28        >
29
30        <LinearLayout
31            android:id="@+id/slider_group"
32            android:layout_width="wrap_content"
33            android:layout_height="wrap_content"
34            android:orientation="vertical"
35            >
36            <!-- Sliders go here -->
37        </LinearLayout>
38
39        <ImageView
40            android:id="@+id/expand_button_divider"
41            android:src="?attr/dividerVertical"
42            android:layout_width="wrap_content"
43            android:layout_height="32dip"
44            android:scaleType="fitXY"
45            android:layout_gravity="top"
46            android:layout_marginTop="16dip"
47            android:layout_marginBottom="16dip"
48            />
49
50        <ImageView
51            android:id="@+id/expand_button"
52            android:layout_width="wrap_content"
53            android:layout_height="wrap_content"
54            android:layout_gravity="top"
55            android:padding="16dip"
56            android:background="?attr/selectableItemBackground"
57            android:src="@drawable/ic_sysbar_quicksettings"
58            />
59        
60    </LinearLayout>
61
62</FrameLayout>
63
64
65