summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/opml_import.xml
blob: 9b2036228b92ffec03f13cf255a7a2623d263a19 (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
<?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">
    <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="wrap_content"
        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/txtvHeadingExplanation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            style="@style/AntennaPod.TextView.Heading"
            android:text="@string/txtvfeedurl_label"/>

        <TextView
            android:id="@+id/txtvExplanation"
            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/divider"
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:layout_margin="16dp"
            android:background="?android:attr/listDivider"/>

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

        <TextView
            android:id="@+id/txtvExplanationOpenWith"
            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>
</ScrollView>