summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-22 17:27:21 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-22 17:27:21 +0200
commitfb2f19459a439159b097e8def9739cb12d79f7c1 (patch)
tree4172d33536d216a353fb63fbca7f0528cd5c117a /res/layout
parent0634ae4d781e9f91005032fb7905a3f4564932f1 (diff)
downloadAntennaPod-fb2f19459a439159b097e8def9739cb12d79f7c1.zip
Improved Feedlist
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/feedlist_item.xml46
1 files changed, 32 insertions, 14 deletions
diff --git a/res/layout/feedlist_item.xml b/res/layout/feedlist_item.xml
index b448b75f9..ff9cef63b 100644
--- a/res/layout/feedlist_item.xml
+++ b/res/layout/feedlist_item.xml
@@ -1,38 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
- android:layout_height="match_parent" >
+ android:layout_height="match_parent"
+ android:paddingBottom="4dp"
+ android:paddingTop="4dp"
+ android:paddingRight="16dp">
+
+
<ImageView
android:id="@+id/imgvFeedimage"
- android:layout_width="60dip"
- android:layout_height="60dip"
+ android:layout_width="55dip"
+ android:layout_height="55dip"
android:layout_alignParentLeft="true"
- android:layout_marginBottom="1dip"
+ android:layout_marginLeft="1dip"
+ android:layout_marginRight="4dip"
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" >
+ android:layout_height="match_parent"
+ android:layout_toRightOf="@id/imgvFeedimage"
+ android:orientation="vertical" >
<TextView
android:id="@+id/txtvFeedname"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textStyle="bold" />
<TextView
- android:id="@+id/txtvNewEpisodes"
- android:layout_width="fill_parent"
+ android:id="@+id/txtvNumEpisodes"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- />
+ android:textColor="@color/gray" />
<TextView
android:id="@+id/txtvLastUpdate"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textColor="@color/gray"
+ android:textStyle="italic"/>
</LinearLayout>
+
+ <TextView
+ android:id="@+id/txtvNewEps"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:textSize="20dp"
+ android:textStyle="bold" />
</RelativeLayout> \ No newline at end of file