1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:orientation="vertical"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent"
7    android:id="@+id/audio_loopback_layout">
8
9    <TextView
10        android:layout_width="wrap_content"
11        android:layout_height="wrap_content"
12        android:text="@string/audio_loopback_instructions2"
13        android:id="@+id/audio_loopback_instructions2" />
14
15    <SeekBar
16        android:layout_width="match_parent"
17        android:layout_height="wrap_content"
18        android:id="@+id/audio_loopback_level_seekbar"
19        android:nextFocusForward="@+id/audio_loopback_test_btn"
20        android:nextFocusUp="@+id/audio_loopback_plug_ready_btn"
21        android:nextFocusDown="@+id/audio_loopback_test_btn"
22        android:nextFocusLeft="@+id/audio_loopback_plug_ready_btn"
23        android:nextFocusRight="@+id/audio_loopback_test_btn" />
24
25    <TextView
26        android:layout_width="wrap_content"
27        android:layout_height="wrap_content"
28        android:text="@string/audio_loopback_level_text"
29        android:id="@+id/audio_loopback_level_text" />
30
31</LinearLayout>
32