| John Spurlock | 7f1df5e | 2014-05-31 19:11:40 -0400 | [diff] [blame] | 1 | <!-- |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 2 | Copyright (C) 2015 The Android Open Source Project |
| John Spurlock | 7f1df5e | 2014-05-31 19:11:40 -0400 | [diff] [blame] | 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 | --> |
| Julia Reynolds | c791e05 | 2016-02-19 16:02:01 -0500 | [diff] [blame] | 16 | <RelativeLayout |
| 17 | xmlns:android="http://schemas.android.com/apk/res/android" |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 18 | android:id="@+id/volume_dialog" |
| John Spurlock | 7e6809a | 2014-08-06 16:03:14 -0400 | [diff] [blame] | 19 | android:layout_width="match_parent" |
| John Spurlock | 7f1df5e | 2014-05-31 19:11:40 -0400 | [diff] [blame] | 20 | android:layout_height="wrap_content" |
| John Spurlock | 22def3d | 2015-06-17 11:56:12 -0400 | [diff] [blame] | 21 | android:layout_marginBottom="@dimen/volume_dialog_margin_bottom" |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 22 | android:background="@drawable/volume_dialog_background" |
| Julia Reynolds | 5f83c85 | 2016-06-15 12:53:31 -0400 | [diff] [blame] | 23 | android:translationZ="4dp" > |
| John Spurlock | 7f1df5e | 2014-05-31 19:11:40 -0400 | [diff] [blame] | 24 | |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 25 | <LinearLayout |
| 26 | android:id="@+id/volume_dialog_content" |
| 27 | android:layout_width="match_parent" |
| 28 | android:layout_height="wrap_content" |
| Julia Reynolds | 568585b | 2016-07-25 08:55:15 -0400 | [diff] [blame] | 29 | android:orientation="vertical" > |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 30 | |
| Julia Reynolds | 568585b | 2016-07-25 08:55:15 -0400 | [diff] [blame] | 31 | <LinearLayout |
| 32 | android:id="@+id/volume_dialog_rows" |
| 33 | android:layout_width="match_parent" |
| 34 | android:layout_height="wrap_content" |
| 35 | android:paddingEnd="@dimen/volume_button_size" |
| Julia Reynolds | eded2fc | 2016-08-08 15:41:43 -0400 | [diff] [blame] | 36 | android:paddingTop="@dimen/volume_dialog_collapsed_padding_top" |
| Julia Reynolds | 568585b | 2016-07-25 08:55:15 -0400 | [diff] [blame] | 37 | android:orientation="vertical" > |
| 38 | <View android:id="@+id/spacer" |
| 39 | android:layout_width="match_parent" |
| 40 | android:layout_height="@dimen/volume_dialog_expanded_spacer" |
| 41 | android:visibility="gone"/> |
| 42 | <!-- volume rows added and removed here! :-) --> |
| 43 | </LinearLayout> |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 44 | |
| John Spurlock | d9c75db | 2015-04-28 11:19:13 -0400 | [diff] [blame] | 45 | <include layout="@layout/volume_zen_footer" /> |
| Jason Monk | e138f55 | 2016-01-18 09:21:45 -0500 | [diff] [blame] | 46 | |
| 47 | <!-- Only shown from Tuner setting --> |
| Jason Monk | aa911b3 | 2016-02-10 21:01:30 -0500 | [diff] [blame] | 48 | <include layout="@layout/tuner_zen_mode_panel" /> |
| John Spurlock | f88d808 | 2015-03-25 18:09:51 -0400 | [diff] [blame] | 49 | </LinearLayout> |
| 50 | |
| Julia Reynolds | c791e05 | 2016-02-19 16:02:01 -0500 | [diff] [blame] | 51 | <com.android.keyguard.AlphaOptimizedImageButton |
| 52 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 53 | xmlns:tools="http://schemas.android.com/tools" |
| 54 | android:id="@+id/volume_expand_button" |
| 55 | style="@style/VolumeButtons" |
| 56 | android:layout_width="@dimen/volume_button_size" |
| 57 | android:layout_height="@dimen/volume_button_size" |
| 58 | android:clickable="true" |
| 59 | android:soundEffectsEnabled="false" |
| 60 | android:src="@drawable/ic_volume_collapse_animation" |
| Julia Reynolds | bda5165 | 2016-07-12 11:30:28 -0400 | [diff] [blame] | 61 | android:background="@drawable/ripple_drawable" |
| Julia Reynolds | c791e05 | 2016-02-19 16:02:01 -0500 | [diff] [blame] | 62 | tools:ignore="RtlHardcoded" |
| 63 | android:layout_alignParentEnd="true" |
| Julia Reynolds | 5f83c85 | 2016-06-15 12:53:31 -0400 | [diff] [blame] | 64 | android:layout_alignParentTop="true" |
| 65 | android:layout_marginTop="@dimen/volume_expander_margin_top" |
| 66 | android:layout_marginEnd="@dimen/volume_expander_margin_end"/> |
| Julia Reynolds | c791e05 | 2016-02-19 16:02:01 -0500 | [diff] [blame] | 67 | |
| Jason Monk | e138f55 | 2016-01-18 09:21:45 -0500 | [diff] [blame] | 68 | </RelativeLayout> |