<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:background="@drawable/bg_sync_dialog"
    android:padding="24dp"
    android:layout_width="360dp"
    android:layout_height="wrap_content">
    <TextView
        android:textSize="18sp"
        android:textStyle="bold"
        android:textColor="#ffffff"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="24dp"
        android:text="@string/header_playback_settings"/>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp">
        <LinearLayout
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp">
            <TextView
                android:textSize="13sp"
                android:textColor="#a1a1aa"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="@string/label_volume_boost"
                android:layout_weight="1"/>
            <TextView
                android:textSize="14sp"
                android:textStyle="bold"
                android:textColor="@android:color/white"
                android:id="@+id/volume_boost_value"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
        </LinearLayout>
        <SeekBar
            android:id="@+id/volume_boost_seekbar"
            android:focusable="true"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:max="40"
            android:progress="20"
            android:progressDrawable="@drawable/seekbar_thin_progress"
            android:thumb="@drawable/seekbar_thin_thumb"
            android:splitTrack="false"
            android:min="0"/>
    </LinearLayout>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp">
        <LinearLayout
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp">
            <TextView
                android:textSize="13sp"
                android:textColor="#a1a1aa"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="@string/label_subtitle_offset"
                android:layout_weight="1"/>
            <TextView
                android:textSize="14sp"
                android:textStyle="bold"
                android:textColor="@android:color/white"
                android:id="@+id/subtitle_delay_value"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
        </LinearLayout>
        <SeekBar
            android:id="@+id/subtitle_delay_seekbar"
            android:focusable="true"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:max="480"
            android:progress="240"
            android:progressDrawable="@drawable/seekbar_thin_progress"
            android:thumb="@drawable/seekbar_thin_thumb"
            android:splitTrack="false"
            android:min="0"/>
    </LinearLayout>
    <TextView
        android:textSize="11sp"
        android:textColor="#71717a"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:text="@string/msg_subtitle_delay_hint"/>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp">
        <LinearLayout
            android:gravity="center_vertical"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="8dp">
            <TextView
                android:textSize="13sp"
                android:textColor="#a1a1aa"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="@string/label_audio_delay"
                android:layout_weight="1"/>
            <TextView
                android:textSize="14sp"
                android:textStyle="bold"
                android:textColor="@android:color/white"
                android:id="@+id/audio_delay_value"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
        </LinearLayout>
        <SeekBar
            android:id="@+id/audio_delay_seekbar"
            android:focusable="true"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:max="480"
            android:progress="240"
            android:progressDrawable="@drawable/seekbar_thin_progress"
            android:thumb="@drawable/seekbar_thin_thumb"
            android:splitTrack="false"
            android:min="0"/>
    </LinearLayout>
    <TextView
        android:textSize="11sp"
        android:textColor="#71717a"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:text="@string/msg_audio_delay_hint"/>
    <LinearLayout
        android:gravity="end"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:textSize="13sp"
            android:textColor="#ffffff"
            android:id="@+id/btn_reset"
            android:background="@drawable/bg_sync_reset_button"
            android:focusable="true"
            android:layout_width="wrap_content"
            android:layout_height="36dp"
            android:text="@string/action_reset"
            android:layout_marginEnd="12dp"
            android:paddingHorizontal="20dp"/>
        <Button
            android:textSize="13sp"
            android:textColor="#ffffff"
            android:id="@+id/btn_close"
            android:background="@drawable/bg_sync_close_button"
            android:focusable="true"
            android:layout_width="wrap_content"
            android:layout_height="36dp"
            android:text="@string/action_close"
            android:paddingHorizontal="20dp"/>
    </LinearLayout>
</LinearLayout>
