summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-16 16:51:25 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-16 16:51:25 +0200
commitd539786af67f07044b31febb369abe69dbf8e486 (patch)
treed89c4db28589db40bfeee92f036212ab7ac6f65c /res
parentc2054be4600cd88155d12be01e166ba38ff0d32c (diff)
downloadAntennaPod-d539786af67f07044b31febb369abe69dbf8e486.zip
Added Button to FeedItemlist item
Diffstat (limited to 'res')
-rw-r--r--res/layout/feeditemlist_item.xml8
-rw-r--r--res/values/strings.xml1
2 files changed, 9 insertions, 0 deletions
diff --git a/res/layout/feeditemlist_item.xml b/res/layout/feeditemlist_item.xml
index a51d64cd7..19c402bbb 100644
--- a/res/layout/feeditemlist_item.xml
+++ b/res/layout/feeditemlist_item.xml
@@ -13,5 +13,13 @@
android:layout_height="wrap_content"
android:layout_below="@id/txtvItemname"
/>
+ <Button
+ android:id="@+id/butActions"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:text="More"
+ android:layout_alignParentRight="true"
+ android:focusable="false"
+ android:onClick="onButActionClicked"/>
</RelativeLayout>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 092b376f2..4cc1830ff 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -4,6 +4,7 @@
<!-- Activitiy titles-->
<string name="app_name">Podfetcher</string>
<string name="feeds_label">Feeds</string>
+ <string name="new_label">New</string>
<string name="settings_label">Settings</string>
<string name="add_new_feed_label">Add a new Feed</string>
<string name="downloads_label">Downloads</string>