1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright 2016 The Android Open Source Project --> 3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:orientation="horizontal" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent"> 7 <TextView 8 android:id="@+id/stream_id" 9 android:layout_width="0dp" 10 android:layout_height="match_parent" 11 android:textSize="22sp" 12 android:gravity="center" 13 android:layout_weight="2"> 14 </TextView> 15 <TextView 16 android:id="@+id/volume_limit" 17 android:layout_width="0dp" 18 android:layout_height="match_parent" 19 android:layout_marginStart="10dp" 20 android:textSize="22sp" 21 android:gravity="center" 22 android:layout_weight="2"> 23 </TextView> 24 <TextView 25 android:id="@+id/current_volume" 26 android:layout_width="0dp" 27 android:layout_height="match_parent" 28 android:textSize="22sp" 29 android:layout_marginStart="10dp" 30 android:gravity="center" 31 android:layout_weight="2"> 32 33 </TextView> 34 <TextView 35 android:id="@+id/is_muted" 36 android:layout_width="0dp" 37 android:layout_height="match_parent" 38 android:textSize="22sp" 39 android:layout_marginStart="10dp" 40 android:gravity="center" 41 android:layout_weight="3"> 42 </TextView> 43 <TextView 44 android:id="@+id/is_blocked" 45 android:layout_width="0dp" 46 android:layout_height="match_parent" 47 android:textSize="22sp" 48 android:layout_marginStart="10dp" 49 android:gravity="center" 50 android:layout_weight="3"> 51 </TextView> 52 <TextView 53 android:id="@+id/is_attenuated" 54 android:layout_width="0dp" 55 android:layout_height="match_parent" 56 android:textSize="22sp" 57 android:layout_marginStart="10dp" 58 android:gravity="center" 59 android:layout_weight="3"> 60 </TextView> 61 <TextView 62 android:id="@+id/is_hal_muted" 63 android:layout_width="0dp" 64 android:layout_height="match_parent" 65 android:textSize="22sp" 66 android:layout_marginStart="10dp" 67 android:gravity="center" 68 android:layout_weight="3"> 69 </TextView> 70 <ToggleButton 71 android:id="@+id/volume_mute" 72 android:layout_width="wrap_content" 73 android:layout_height="match_parent" 74 android:layout_marginStart="10dp" 75 android:layout_weight="1" 76 android:text="@string/volume_unmute" 77 android:textOff="@string/volume_mute" 78 android:textOn="@string/volume_unmute"/> 79 <Button 80 android:id="@+id/volume_up" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:layout_weight="1" 84 android:text="@string/volume_up_logical" /> 85 <Button 86 android:id="@+id/volume_down" 87 android:layout_width="wrap_content" 88 android:layout_height="wrap_content" 89 android:layout_weight="1" 90 android:text="@string/volume_down_logical" /> 91 <Button 92 android:id="@+id/request" 93 android:layout_width="wrap_content" 94 android:layout_height="wrap_content" 95 android:layout_weight="1" 96 android:text="@string/request" /> 97</LinearLayout> 98