summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-14 14:13:54 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-14 14:13:54 +0200
commit922b868914eaa571786256012d23ad2cb925ad74 (patch)
treef4e05b445154abe69e13989b5782ce7f114eb832 /res/layout
parent80c7616c7d87ebd789c085d64a4c2d7b269ebfc6 (diff)
downloadAntennaPod-922b868914eaa571786256012d23ad2cb925ad74.zip
Added 'lastUpdate' attribute to Feed
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/feedlist_item.xml61
1 files changed, 32 insertions, 29 deletions
diff --git a/res/layout/feedlist_item.xml b/res/layout/feedlist_item.xml
index 9fc1191c7..c69815405 100644
--- a/res/layout/feedlist_item.xml
+++ b/res/layout/feedlist_item.xml
@@ -2,33 +2,36 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
- <ImageView
- android:id="@+id/imgvFeedimage"
- android:layout_height="60dip"
- android:layout_width="60dip"
- android:layout_marginBottom="1dip"
- android:cropToPadding="true"
- android:layout_alignParentLeft="true"
- />
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_height="fill_parent"
- android:layout_width="wrap_content"
- android:layout_toRightOf="@id/imgvFeedimage">
- <TextView
- android:id="@+id/txtvFeedname"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- />
- <TextView
- android:id="@+id/txtvNewEpisodes"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
-
- />
-
-
- </LinearLayout>
-
-
-</RelativeLayout>
+ <ImageView
+ android:id="@+id/imgvFeedimage"
+ android:layout_width="60dip"
+ android:layout_height="60dip"
+ android:layout_alignParentLeft="true"
+ android:layout_marginBottom="1dip"
+ android:cropToPadding="true" />
+
+ <LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="wrap_content"
+ android:layout_height="fill_parent"
+ android:layout_toRightOf="@id/imgvFeedimage" >
+
+ <TextView
+ android:id="@+id/txtvFeedname"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/txtvNewEpisodes"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/txtvLastUpdate"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content" />
+ </LinearLayout>
+
+</RelativeLayout> \ No newline at end of file