<?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.mobileer.oboetester.TestDataPathsActivity">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <CheckBox
            android:id="@+id/checkbox_paths_all_channels"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="AllCh" />

        <CheckBox
            android:id="@+id/checkbox_paths_input_presets"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="InPre" />

        <CheckBox
            android:id="@+id/checkbox_paths_all_sample_rates"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="false"
            android:text="AllSRs" />

        <CheckBox
            android:id="@+id/checkbox_paths_in_channel_masks"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="false"
            android:text="InChMasks" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="OutChMasks:" />

        <RadioGroup
            android:id="@+id/group_ch_mask_options"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <RadioButton
                android:id="@+id/radio_out_ch_masks_none"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="none"
                android:checked="true"
                />

            <RadioButton
                android:id="@+id/radio_out_ch_masks_some"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="some"
                />

            <RadioButton
                android:id="@+id/radio_out_ch_masks_all"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="all"
                />
        </RadioGroup>
    </LinearLayout>

    <TextView
        android:id="@+id/text_instructions"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:lines="2"
        android:text="@string/test_datapath_instructions"
        android:textColor="#F44336"
        android:textSize="18sp"
        android:textStyle="bold" />

    <com.mobileer.oboetester.AutomatedTestRunner
        android:id="@+id/auto_test_runner"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" />

</LinearLayout>
