summaryrefslogtreecommitdiff
path: root/res/layout/addfeed.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/addfeed.xml')
-rw-r--r--res/layout/addfeed.xml64
1 files changed, 44 insertions, 20 deletions
diff --git a/res/layout/addfeed.xml b/res/layout/addfeed.xml
index 39552976b..bb72a2be1 100644
--- a/res/layout/addfeed.xml
+++ b/res/layout/addfeed.xml
@@ -1,8 +1,8 @@
<?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" >
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical">
<LinearLayout
android:id="@+id/footer"
@@ -10,21 +10,21 @@
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
- android:orientation="horizontal" >
+ 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" />
+ 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" />
+ android:text="@string/cancel_label"/>
</LinearLayout>
<ScrollView
@@ -32,21 +32,22 @@
android:layout_height="0dp"
android:layout_above="@id/footer"
android:layout_alignParentTop="true"
- android:scrollbars="vertical" >
+ android:scrollbars="vertical">
<RelativeLayout
android:layout_width="match_parent"
- android:layout_height="wrap_content" >
+ 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="8dp"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:text="@string/txtvfeedurl_label" />
+ 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"
@@ -55,23 +56,35 @@
android:layout_below="@id/txtvFeedurl"
android:layout_margin="8dp"
android:hint="@string/feedurl_label"
- android:inputType="textUri" />
+ android:inputType="textUri"/>
<TextView
- android:id="@+id/txtvBrowseMiroguide"
+ android:id="@+id/txtvPodcastDirectories"
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" />
+ 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/txtvBrowseMiroguide"
+ android:layout_below="@id/butBrowseGpoddernet"
android:layout_margin="8dp"
- android:text="@string/browse_miroguide_label" />
+ android:text="@string/miro_guide_label"/>
+
<TextView
android:id="@+id/txtvOpmlImport"
@@ -79,17 +92,28 @@
android:layout_height="wrap_content"
android:layout_below="@id/butBrowseMiroguide"
android:layout_margin="8dp"
- android:text="@string/opml_import_txtv_button_lable" />
+ 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/txtvOpmlImport"
+ android:layout_below="@id/txtvOpmlImportExpl"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
- android:text="@string/opml_import_label" />
+ android:text="@string/opml_import_label"/>
</RelativeLayout>
</ScrollView>