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

    <TextView
        android:id="@+id/txtvFeedurl"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_margin="8dp"
        android:focusable="true"
        android:focusableInTouchMode="true"
        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" />

    <TextView
        android:id="@+id/txtvBrowseMiroguide"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/etxtFeedurl"
        android:layout_margin="8dp"
        android:text="@string/txtv_browse_miroguide_label" />

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

    <LinearLayout
        android:id="@+id/footer"
        style="@android:style/ButtonBar"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/butConfirm"
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/confirm_label" />

        <Button
            android:id="@+id/butCancel"
            android:layout_width="0px"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/cancel_label" />
    </LinearLayout>

</RelativeLayout>