summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-08-04 16:05:36 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-08-04 16:05:36 +0200
commita6bdf5bb30b4ef663b85141b82363df63a08c543 (patch)
tree29a629d42a0930e87b7de3d3c46adba572e2bf97
parent7f100f8072ad4da15f2165561ed0652900e30a73 (diff)
downloadAntennaPod-a6bdf5bb30b4ef663b85141b82363df63a08c543.zip
Improved layout of downloadlog
-rw-r--r--res/layout/downloadlog_item.xml27
1 files changed, 19 insertions, 8 deletions
diff --git a/res/layout/downloadlog_item.xml b/res/layout/downloadlog_item.xml
index 0e74ddf08..796c503c9 100644
--- a/res/layout/downloadlog_item.xml
+++ b/res/layout/downloadlog_item.xml
@@ -6,33 +6,44 @@
<RelativeLayout
android:layout_width="match_parent"
- android:layout_height="wrap_content" >
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="4dp"
+ android:layout_marginLeft="8dp"
+ android:layout_marginRight="8dp"
+ android:layout_marginTop="4dp" >
<TextView
- android:id="@+id/txtvTitle"
+ android:id="@+id/txtvType"
android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true" />
<TextView
- android:id="@+id/txtvType"
+ android:id="@+id/txtvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_alignParentRight="true" />
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentTop="true"
+ android:layout_toLeftOf="@id/txtvType" />
</RelativeLayout>
<TextView
android:id="@+id/txtvDate"
android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="8dp" />
<TextView
android:id="@+id/txtvStatus"
android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:layout_margin="8dp" />
<TextView
android:id="@+id/txtvReason"
android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="4dp"
+ android:layout_marginLeft="8dp" />
</LinearLayout> \ No newline at end of file