blob: 34bb49dbc799ed4d0903e851a331479d3d808715 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.google.sample.oboe.manualtest.EchoActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
>
<com.google.sample.oboe.manualtest.StreamConfigurationView
android:id="@+id/inputStreamConfiguration"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal" />
<com.google.sample.oboe.manualtest.InputMarginView
android:id="@+id/input_margin_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center" />
<com.google.sample.oboe.manualtest.StreamConfigurationView
android:id="@+id/outputStreamConfiguration"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button_start_echo"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onStartEcho"
android:text="@string/startAudio" />
<Button
android:id="@+id/button_stop_echo"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onStopEcho"
android:text="@string/stopAudio" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/text_delay_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Delay (msec)" />
<SeekBar
android:id="@+id/fader_delay_time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="1000"
android:progress="1000" />
</LinearLayout>
<TextView
android:id="@+id/text_status"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lines="11"
android:text="@string/echo_instructions"
android:textSize="14sp"
android:textStyle="bold" />
</LinearLayout>
</ScrollView>