summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/addfeed.xml
blob: b7babbafa9693b0f4a9f432b76d1033e0179d157 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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="match_parent"
    android:scrollbars="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="8dp"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:paddingBottom="8dp"
        android:orientation="vertical">

        <TextView
            android:id="@+id/txtvFeedurl"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/AntennaPod.TextView.Heading"
            android:text="@string/txtvfeedurl_label"/>

        <EditText
            android:id="@+id/etxtFeedurl"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="4dp"
            android:hint="@string/etxtFeedurlHint"
            android:inputType="textUri"/>

        <Button
            android:id="@+id/butConfirm"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="@string/confirm_label"/>

        <View
            android:id="@+id/divider1"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_margin="16dp"
            android:background="?android:attr/listDivider"/>

        <TextView
            android:id="@+id/txtvPodcastDirectories"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/divider1"
            style="@style/AntennaPod.TextView.Heading"
            android:text="@string/podcastdirectories_label"/>

        <TextView
            android:id="@+id/txtvPodcastDirectoriesDescr"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/podcastdirectories_descr"
            android:textSize="@dimen/text_size_medium"
            android:layout_marginTop="4dp"/>

        <Button
            android:id="@+id/butBrowseGpoddernet"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="@string/browse_gpoddernet_label"/>

        <Button
            android:id="@+id/butSearchItunes"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="@string/search_itunes_label"/>

        <View
            android:id="@+id/divider2"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_margin="16dp"
            android:background="?android:attr/listDivider"/>

        <TextView
            android:id="@+id/txtvOpmlImport"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/AntennaPod.TextView.Heading"
            android:text="@string/opml_import_label"/>

        <TextView
            android:id="@+id/txtvOpmlImportExpl"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="4dp"
            android:textSize="@dimen/text_size_medium"
            android:text="@string/opml_import_txtv_button_lable"/>

        <Button
            android:id="@+id/butOpmlImport"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="8dp"
            android:text="@string/opml_import_label"/>

    </LinearLayout>

</ScrollView>