• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    android:layout_width="match_parent"
5    android:layout_height="wrap_content"
6    android:orientation="vertical">
7
8    <LinearLayout
9        android:orientation="horizontal"
10        android:layout_width="match_parent"
11        android:layout_height="wrap_content">
12        <TextView
13            android:text="@string/audioLoopbackInputLbl"
14            android:layout_width="wrap_content"
15            android:layout_height="wrap_content"
16            android:textSize="18sp"/>
17
18        <TextView
19            android:layout_width="match_parent"
20            android:layout_height="wrap_content"
21            android:paddingLeft="10dp"
22            android:paddingRight="10dp"
23            android:id="@+id/audioLoopbackInputLbl"
24            android:textSize="18sp"/>
25    </LinearLayout>
26
27    <LinearLayout
28        android:orientation="horizontal"
29        android:layout_width="match_parent"
30        android:layout_height="wrap_content">
31    <TextView
32        android:text="@string/audioLoopbackOutputLbl"
33        android:layout_width="wrap_content"
34        android:layout_height="wrap_content"
35        android:textSize="18sp"/>
36
37    <TextView
38        android:layout_width="match_parent"
39        android:layout_height="wrap_content"
40        android:paddingLeft="10dp"
41        android:paddingRight="10dp"
42        android:id="@+id/audioLoopbackOutputLbl"
43        android:textSize="18sp"/>
44    </LinearLayout>
45
46</LinearLayout>