blob: ffcdf135df86f85bc42ca8aa90956bfab506b419 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
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"
tools:context="com.google.sample.oboe.manualtest.TestDisconnectActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button_start"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onStartDisconnectTest"
android:text="@string/startAudio" />
<Button
android:id="@+id/button_stop"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onStopDisconnectTest"
android:text="@string/stopAudio" />
<Button
android:id="@+id/button_share"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onShareResult"
android:text="@string/share" />
</LinearLayout>
<TextView
android:id="@+id/text_analyzer_result"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lines="4"
android:text="@string/test_disconnect_instructions"
android:textSize="18sp"
android:textStyle="bold"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button_fail"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onFailTest"
android:text="@string/failTest" />
<Button
android:id="@+id/button_skip"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:onClick="onSkipTest"
android:text="@string/skipTest" />
</LinearLayout>
<TextView
android:id="@+id/text_plug_events"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lines="1"
android:text="plug #"
android:textSize="18sp"
android:textStyle="bold"
/>
<TextView
android:id="@+id/text_auto_result"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars = "vertical"
android:gravity="bottom"
android:text="@string/log_of_glitch_tests"
/>
</LinearLayout>