summaryrefslogtreecommitdiff
path: root/res/layout/addfeed.xml
blob: bb0842c0fd088b84f31eb010049b8b311d5770cd (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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:scrollbars="vertical">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/txtvFeedurl"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_margin="16dp"
                android:textSize="@dimen/text_size_large"
                android:textColor="@color/bright_blue"
                android:textStyle="italic"
                android:text="@string/txtvfeedurl_label"/>

            <EditText
                android:id="@+id/etxtFeedurl"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/txtvFeedurl"
                android:layout_margin="8dp"
                android:hint="@string/feedurl_label"
                android:inputType="textUri"/>

            <Button
                android:id="@+id/butConfirm"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/etxtFeedurl"
                android:layout_margin="8dp"
                android:text="@string/confirm_label"/>

            <TextView
                android:id="@+id/txtvPodcastDirectories"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/butConfirm"
                android:layout_margin="8dp"
                android:textSize="@dimen/text_size_large"
                android:textColor="@color/bright_blue"
                android:textStyle="italic"
                android:text="@string/podcastdirectories_label"/>

            <Button
                android:id="@+id/butBrowseGpoddernet"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/txtvPodcastDirectories"
                android:layout_margin="8dp"
                android:text="@string/gpodnet_main_label"/>

            <Button
                android:id="@+id/butBrowseMiroguide"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/butBrowseGpoddernet"
                android:layout_margin="8dp"
                android:text="@string/miro_guide_label"/>


            <TextView
                android:id="@+id/txtvOpmlImport"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/butBrowseMiroguide"
                android:layout_margin="8dp"
                android:textSize="@dimen/text_size_large"
                android:textColor="@color/bright_blue"
                android:textStyle="italic"
                android:text="@string/opml_import_label"/>

            <TextView
                android:id="@+id/txtvOpmlImportExpl"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/txtvOpmlImport"
                android:layout_margin="8dp"
                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_below="@id/txtvOpmlImportExpl"
                android:layout_marginBottom="8dp"
                android:layout_marginLeft="8dp"
                android:layout_marginRight="8dp"
                android:text="@string/opml_import_label"/>
        </RelativeLayout>
    </ScrollView>

</RelativeLayout>