summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/addfeed.xml2
-rw-r--r--res/layout/ellipsize_start_listitem.xml19
-rw-r--r--res/values/strings.xml1
3 files changed, 21 insertions, 1 deletions
diff --git a/res/layout/addfeed.xml b/res/layout/addfeed.xml
index 48c89f802..09502eb7b 100644
--- a/res/layout/addfeed.xml
+++ b/res/layout/addfeed.xml
@@ -29,7 +29,7 @@
android:layout_height="wrap_content"
android:layout_below="@id/txtvFeedurl"
android:layout_margin="8dp"
- android:hint="@string/feedurl_label"
+ android:hint="@string/etxtFeedurlHint"
android:inputType="textUri"/>
<Button
diff --git a/res/layout/ellipsize_start_listitem.xml b/res/layout/ellipsize_start_listitem.xml
new file mode 100644
index 000000000..161e1aa37
--- /dev/null
+++ b/res/layout/ellipsize_start_listitem.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <TextView
+ android:id="@+id/txtvTitle"
+ android:textColor="?android:attr/textColorPrimary"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="@dimen/text_size_small"
+ android:lines="1"
+ android:singleLine="true"
+ android:layout_margin="16dp"
+ android:ellipsize="start"/>
+
+</LinearLayout> \ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 7418bca8a..359b54b37 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -69,6 +69,7 @@
<!-- 'Add Feed' Activity labels -->
<string name="feedurl_label">Feed URL</string>
+ <string name="etxtFeedurlHint">URL of feed or website</string>
<string name="txtvfeedurl_label">Add Podcast by URL</string>
<string name="podcastdirectories_label">Find podcast in directory</string>
<string name="podcastdirectories_descr">You can search for new podcasts by name, category or popularity in the gpodder.net directory.</string>