summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/share_episode_dialog.xml
blob: d79854972764785dd272afdfc301a858279eaca3 (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"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:padding="16dp">

    <RadioGroup
        android:id="@+id/share_dialog_radio_group"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="16dp"
        android:orientation="vertical">

        <RadioButton
            android:id="@+id/share_link_to_episode_radio"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/share_dialog_link_to_episode"
            android:checked="true" />

        <RadioButton
            android:id="@+id/share_media_file_radio"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/share_dialog_media_file_label" />

    </RadioGroup>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="@string/share_dialog_include_label" />

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

</LinearLayout>