OSDN Git Service

DO NOT MERGE. Grant MMS Uri permissions as the calling UID.
[android-x86/frameworks-base.git] / packages / SystemUI / res / layout / volume_dialog.xml
1 <!--
2      Copyright (C) 2015 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 <RelativeLayout
17     xmlns:android="http://schemas.android.com/apk/res/android"
18     android:id="@+id/volume_dialog"
19     android:layout_width="match_parent"
20     android:layout_height="wrap_content"
21     android:layout_marginBottom="@dimen/volume_dialog_margin_bottom"
22     android:background="@drawable/volume_dialog_background"
23     android:translationZ="4dp"
24     android:paddingTop="8dp">
25
26     <LinearLayout
27         android:id="@+id/volume_dialog_content"
28         android:layout_width="match_parent"
29         android:layout_height="wrap_content"
30         android:orientation="vertical"
31         android:paddingBottom="8dp"
32         android:paddingStart="8dp"
33         android:animateLayoutChanges="true" >
34
35         <!-- volume rows added and removed here! :-) -->
36
37         <include layout="@layout/volume_zen_footer" />
38
39         <!-- Only shown from Tuner setting -->
40         <include layout="@layout/tuner_zen_mode_panel" />
41     </LinearLayout>
42
43     <com.android.keyguard.AlphaOptimizedImageButton
44             xmlns:android="http://schemas.android.com/apk/res/android"
45             xmlns:tools="http://schemas.android.com/tools"
46             android:id="@+id/volume_expand_button"
47             style="@style/VolumeButtons"
48             android:layout_width="@dimen/volume_button_size"
49             android:layout_height="@dimen/volume_button_size"
50             android:clickable="true"
51             android:soundEffectsEnabled="false"
52             android:src="@drawable/ic_volume_collapse_animation"
53             tools:ignore="RtlHardcoded"
54             android:layout_alignParentEnd="true"
55             android:layout_alignParentTop="true"/>
56
57 </RelativeLayout>