summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/opml_import.xml
blob: 5ece4f09fbfaf653eefc4369797021eda02e1ac6 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingTop="8dp"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:paddingBottom="8dp"
    tools:background="@android:color/darker_gray">

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

    <TextView
        android:id="@+id/txtvExplanation1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/opml_import_explanation_1"
        android:textSize="@dimen/text_size_medium"
        android:layout_marginTop="4dp"
        tools:background="@android:color/holo_green_dark" />

    <Button
        android:id="@+id/butChooseFileFromFilesystem"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="8dp"
        android:text="@string/choose_file_from_filesystem" />

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

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

    <TextView
        android:id="@+id/txtvExplanation2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/opml_import_explanation_2"
        android:textSize="@dimen/text_size_medium"
        android:layout_marginTop="4dp"
        tools:background="@android:color/holo_green_dark" />

    <Button
        android:id="@+id/butChooseFileFromExternal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="8dp"
        android:text="@string/choose_file_from_external_application" />

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

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

    <TextView
        android:id="@+id/txtvExplanation3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/opml_import_explanation_3"
        android:textSize="@dimen/text_size_medium"
        android:layout_marginTop="4dp"
        tools:background="@android:color/holo_green_dark" />

</LinearLayout>