summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-17 18:20:34 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-17 18:20:34 +0200
commit13f1e4674ebc619c68b4b1de30073d3a4b3fcd28 (patch)
treea5309f3b3ce952333e8d0f51343233970d268432 /res/layout
parent2f5e0dd0233ff0209e1a70a2a96e03f697bfee72 (diff)
downloadAntennaPod-13f1e4674ebc619c68b4b1de30073d3a4b3fcd28.zip
Implemented adapter for download log
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/downloadlog_item.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/res/layout/downloadlog_item.xml b/res/layout/downloadlog_item.xml
new file mode 100644
index 000000000..0e74ddf08
--- /dev/null
+++ b/res/layout/downloadlog_item.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical" >
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" >
+
+ <TextView
+ android:id="@+id/txtvTitle"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/txtvType"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true" />
+ </RelativeLayout>
+
+ <TextView
+ android:id="@+id/txtvDate"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/txtvStatus"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:id="@+id/txtvReason"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content" />
+
+</LinearLayout> \ No newline at end of file