55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<?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="wrap_content"
|
|
android:textSize="20sp"
|
|
android:layout_weight="1">
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/volume_limit"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:gravity="center"
|
|
android:textSize="20sp"
|
|
android:layout_weight="1">
|
|
</TextView>
|
|
<TextView
|
|
android:id="@+id/current_volume"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:textSize="20sp"
|
|
android:layout_weight="1">
|
|
</TextView>
|
|
<ToggleButton
|
|
android:id="@+id/volume_mute"
|
|
android:layout_width="150dp"
|
|
android:layout_height="wrap_content"
|
|
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_marginLeft="20dp"
|
|
android:text="@string/volume_up_logical" />
|
|
<Button
|
|
android:id="@+id/volume_down"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/volume_down_logical" />
|
|
<Button
|
|
android:id="@+id/request"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/request" />
|
|
</LinearLayout>
|