summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorDaniel Oeh <daniel@danielpc.(none)>2012-04-13 16:21:34 +0200
committerDaniel Oeh <daniel@danielpc.(none)>2012-04-13 16:21:34 +0200
commitd3859b6763abafad11af40e7c2b61355ad498447 (patch)
tree35c4604e760804cbce13b14f6e89abba7071ed9f /res
parenteb24d41e1d25548aa9a830b1d15667103dd0ce13 (diff)
downloadAntennaPod-d3859b6763abafad11af40e7c2b61355ad498447.zip
Created Activity for viewing items
Diffstat (limited to 'res')
-rw-r--r--res/layout/feeditemview.xml41
-rw-r--r--res/values/strings.xml6
2 files changed, 47 insertions, 0 deletions
diff --git a/res/layout/feeditemview.xml b/res/layout/feeditemview.xml
new file mode 100644
index 000000000..d3149ba46
--- /dev/null
+++ b/res/layout/feeditemview.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical">
+ <TextView
+ android:id="@+id/txtvItemname"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+ <ImageView
+ android:id="@+id/imgvFeedimage"
+ android:layout_height="90dip"
+ android:layout_width="90dip"
+ android:layout_alignParentLeft="true"/>
+ <LinearLayout
+ android:layout_height="fill_parent"
+ android:layout_width="wrap_content"
+ android:layout_alignParentRight="true"
+ android:orientation="vertical">
+ <Button
+ android:id="@+id/butPlay"
+ android:text="@string/play_label"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+ <Button
+ android:id="@+id/butDownload"
+ android:text="@string/download_label"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+ <Button
+ android:id="@+id/butRemove"
+ android:text="@string/remove_label"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+ </LinearLayout>
+ </RelativeLayout>
+</LinearLayout>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 01409a894..ac12da982 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -10,4 +10,10 @@
<!-- -->
<string name="confirm_label">Confirm</string>
+ <!-- Feeditemview labels-->
+ <string name="download_label">Download</string>
+ <string name="play_label">Play</string>
+ <string name="description_label">Description</string>
+ <string name="remove_label">Remove</string>
+
</resources>