summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/audio_controls.xml
blob: dc48006bbd061137babd440fd3740eec145358d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="16dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minWidth="300dp"
        android:orientation="vertical">

        <Button
            android:id="@+id/audio_tracks"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:visibility="gone"
            android:layout_marginBottom="8dp" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="@string/audio_effects"
            style="@style/AntennaPod.TextView.ListItemPrimaryTitle" />

        <CheckBox
            android:id="@+id/skipSilence"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/pref_skip_silence_title" />

        <CheckBox
            android:id="@+id/stereo_to_mono"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/stereo_to_mono" />

    </LinearLayout>

</ScrollView>