<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2016 The Android Open Source Project -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/stream_id"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="22sp"
        android:gravity="center"
        android:layout_weight="2">
    </TextView>
    <TextView
        android:id="@+id/volume_limit"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_marginStart="10dp"
        android:textSize="22sp"
        android:gravity="center"
        android:layout_weight="2">
    </TextView>
    <TextView
        android:id="@+id/current_volume"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="22sp"
        android:layout_marginStart="10dp"
        android:gravity="center"
        android:layout_weight="2">

    </TextView>
    <TextView
        android:id="@+id/is_muted"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="22sp"
        android:layout_marginStart="10dp"
        android:gravity="center"
        android:layout_weight="3">
    </TextView>
    <TextView
        android:id="@+id/is_blocked"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="22sp"
        android:layout_marginStart="10dp"
        android:gravity="center"
        android:layout_weight="3">
    </TextView>
    <TextView
        android:id="@+id/is_attenuated"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="22sp"
        android:layout_marginStart="10dp"
        android:gravity="center"
        android:layout_weight="3">
    </TextView>
    <TextView
        android:id="@+id/is_hal_muted"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:textSize="22sp"
        android:layout_marginStart="10dp"
        android:gravity="center"
        android:layout_weight="3">
    </TextView>
    <ToggleButton
        android:id="@+id/volume_mute"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginStart="10dp"
        android:layout_weight="1"
        android:text="@string/volume_unmute"
        android:textOff="@string/volume_mute"
        android:textOn="@string/volume_unmute"/>
    <Button
        android:id="@+id/volume_up"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/volume_up_logical" />
    <Button
        android:id="@+id/volume_down"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/volume_down_logical" />
    <Button
        android:id="@+id/request"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/request" />
</LinearLayout>
