diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2014-06-16 01:22:46 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2014-06-16 01:22:46 +0200 |
commit | 30017a316e1a514e2441f45ab1545442fe94c0b3 (patch) | |
tree | fec694a07dc4f70f82184bbe14fce51891771477 /res/layout | |
parent | 7fc0e73ea7bcf21f843a0d94426e8df515182271 (diff) | |
download | AntennaPod-30017a316e1a514e2441f45ab1545442fe94c0b3.zip |
Implemented Feed-discovery in OnlineFeedView
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/addfeed.xml | 2 | ||||
-rw-r--r-- | res/layout/ellipsize_start_listitem.xml | 19 |
2 files changed, 20 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 |